File size: 1,491 Bytes
d3dec2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import streamlit as st
import requests
from utils import Recorder, record_audio, play_mp3
import json

st.title("Audio Pipeline")

button_label = "record"

if st.button(button_label):
    st.write("recording...")
    recording_path = record_audio()
    button_label
    with open(recording_path, "rb") as audio_file:
        # Define the multipart/form-data payload
        files = {"audio_file": (recording_path.split("/")[-1], audio_file, "audio/mp3")}

        # Make the POST request
        stt_response = requests.post("http://localhost:8000/stt_query/", files=files)
        st.write("domanda :", stt_response.json())

        # LLM
        url = "http://localhost:8000/llm_query/"
        # Append the query parameter to the URL
        llm_response = requests.post(
            url=url, params={"llm_query": str(stt_response.content)}
        )
        data = llm_response.json()
        inner_data = json.loads(data["response_text"])

        # Now, you can access the data from the inner JSON
        risposta = inner_data.get("risposta")
        stato = inner_data.get("stato")
        tipologia = inner_data.get("tipologia")

        print(risposta)
        st.write("risposta: ", risposta)
        st.write("stato: ", stato)
        st.write("tipologia: ", tipologia)

        # TTS
        url = "http://localhost:8000/tts_query/"
        out_path = requests.post(url=url, params={"input_text": str(risposta)})
        print(out_path.json())
        play_mp3(out_path.json())