Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -70,7 +70,7 @@ def generate(user_input, history, temperature=None, max_new_tokens=1024, top_p=0
|
|
70 |
if "history" not in st.session_state:
|
71 |
st.session_state.history = []
|
72 |
|
73 |
-
user_input = st.text_input(value="")
|
74 |
output, audio_bytes = generate(user_input, history=st.session_state.history)
|
75 |
|
76 |
if user_input:
|
|
|
70 |
if "history" not in st.session_state:
|
71 |
st.session_state.history = []
|
72 |
|
73 |
+
user_input = st.text_input(label="Usuario", value="")
|
74 |
output, audio_bytes = generate(user_input, history=st.session_state.history)
|
75 |
|
76 |
if user_input:
|