Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,90 +1,109 @@
|
|
1 |
-
import tempfile
|
2 |
-
import webrtcvad
|
3 |
-
import speech_recognition as sr
|
4 |
-
import numpy as np
|
5 |
import streamlit as st
|
6 |
-
import
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
-
|
10 |
-
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
sample_rate = 16000
|
15 |
-
frame_size = 30
|
16 |
-
chunk_size = 1024 # Adjust as needed for responsiveness
|
17 |
|
18 |
-
|
19 |
-
vad = webrtcvad.Vad()
|
20 |
recognizer = sr.Recognizer()
|
|
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
speech_detected = False
|
25 |
-
phrase = ""
|
26 |
|
27 |
try:
|
28 |
-
|
29 |
-
|
30 |
-
st.
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
st.error("
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
+
import base64
|
3 |
+
import io
|
4 |
+
from huggingface_hub import InferenceClient
|
5 |
+
from gtts import gTTS
|
6 |
+
from audiorecorder import audiorecorder
|
7 |
+
import speech_recognition as sr
|
8 |
+
from pydub import AudioSegment
|
9 |
+
|
10 |
+
pre_prompt_text = "Eres una IA conductual, tus respuestas deberán ser breves, estóicas y humanistas."
|
11 |
|
12 |
+
if "history" not in st.session_state:
|
13 |
+
st.session_state.history = []
|
14 |
|
15 |
+
if "pre_prompt_sent" not in st.session_state:
|
16 |
+
st.session_state.pre_prompt_sent = False
|
|
|
|
|
|
|
17 |
|
18 |
+
def recognize_speech(audio_data, show_messages=True):
|
|
|
19 |
recognizer = sr.Recognizer()
|
20 |
+
audio_recording = sr.AudioFile(audio_data)
|
21 |
|
22 |
+
with audio_recording as source:
|
23 |
+
audio = recognizer.record(source)
|
|
|
|
|
24 |
|
25 |
try:
|
26 |
+
audio_text = recognizer.recognize_google(audio, language="es-ES")
|
27 |
+
if show_messages:
|
28 |
+
st.subheader("Texto Reconocido:")
|
29 |
+
st.write(audio_text)
|
30 |
+
st.success("Reconocimiento de voz completado.")
|
31 |
+
except sr.UnknownValueError:
|
32 |
+
st.warning("No se pudo reconocer el audio. ¿Intentaste grabar algo?")
|
33 |
+
audio_text = ""
|
34 |
+
except sr.RequestError:
|
35 |
+
st.error("Hablame para comenzar!")
|
36 |
+
audio_text = ""
|
37 |
+
|
38 |
+
return audio_text
|
39 |
+
|
40 |
+
def format_prompt(message, history):
|
41 |
+
prompt = "<s>"
|
42 |
+
|
43 |
+
if not st.session_state.pre_prompt_sent:
|
44 |
+
prompt += f"[INST] {pre_prompt_text} [/INST]"
|
45 |
+
st.session_state.pre_prompt_sent = True
|
46 |
+
|
47 |
+
for user_prompt, bot_response in history:
|
48 |
+
prompt += f"[INST] {user_prompt} [/INST]"
|
49 |
+
prompt += f" {bot_response}</s> "
|
50 |
+
|
51 |
+
prompt += f"[INST] {message} [/INST]"
|
52 |
+
return prompt
|
53 |
+
|
54 |
+
def generate(audio_text, history, temperature=None, max_new_tokens=512, top_p=0.95, repetition_penalty=1.0):
|
55 |
+
client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
|
56 |
+
|
57 |
+
temperature = float(temperature) if temperature is not None else 0.9
|
58 |
+
temperature = max(temperature, 1e-2)
|
59 |
+
top_p = float(top_p)
|
60 |
+
|
61 |
+
generate_kwargs = dict(
|
62 |
+
temperature=temperature,
|
63 |
+
max_new_tokens=max_new_tokens,
|
64 |
+
top_p=top_p,
|
65 |
+
repetition_penalty=repetition_penalty,
|
66 |
+
do_sample=True,
|
67 |
+
seed=42)
|
68 |
+
|
69 |
+
formatted_prompt = format_prompt(audio_text, history)
|
70 |
+
stream = client.text_generation(formatted_prompt, **generate_kwargs, stream=True, details=True, return_full_text=True)
|
71 |
+
response = ""
|
72 |
+
|
73 |
+
for response_token in stream:
|
74 |
+
response += response_token.token.text
|
75 |
+
|
76 |
+
response = ' '.join(response.split()).replace('</s>', '')
|
77 |
+
audio_file = text_to_speech(response, speed=1.3)
|
78 |
+
return response, audio_file
|
79 |
+
|
80 |
+
def text_to_speech(text, speed=1.3):
|
81 |
+
tts = gTTS(text=text, lang='es')
|
82 |
+
audio_fp = io.BytesIO()
|
83 |
+
tts.write_to_fp(audio_fp)
|
84 |
+
audio_fp.seek(0)
|
85 |
+
audio = AudioSegment.from_file(audio_fp, format="mp3")
|
86 |
+
modified_speed_audio = audio.speedup(playback_speed=speed)
|
87 |
+
modified_audio_fp = io.BytesIO()
|
88 |
+
modified_speed_audio.export(modified_audio_fp, format="mp3")
|
89 |
+
modified_audio_fp.seek(0)
|
90 |
+
return modified_audio_fp
|
91 |
+
|
92 |
+
def main():
|
93 |
+
audio_data = audiorecorder("Presiona para hablar", "Deteniendo la grabación...")
|
94 |
+
|
95 |
+
if not audio_data.empty():
|
96 |
+
st.audio(audio_data.export().read(), format="audio/wav")
|
97 |
+
audio_data.export("audio.wav", format="wav")
|
98 |
+
audio_text = recognize_speech("audio.wav")
|
99 |
+
|
100 |
+
if audio_text:
|
101 |
+
output, audio_file = generate(audio_text, history=st.session_state.history)
|
102 |
+
|
103 |
+
if audio_file is not None:
|
104 |
+
st.markdown(
|
105 |
+
f"""<audio autoplay="autoplay" controls="controls" src="data:audio/mp3;base64,{base64.b64encode(audio_file.read()).decode()}" type="audio/mp3" id="audio_player"></audio>""",
|
106 |
+
unsafe_allow_html=True)
|
107 |
+
|
108 |
+
if __name__ == "__main__":
|
109 |
+
main()
|