Spaces:
Runtime error
Runtime error
AlbertoFH98
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -185,7 +185,7 @@ RESPUESTA: """
|
|
185 |
with st.chat_message(message["role"]):
|
186 |
st.markdown(message["content"])
|
187 |
|
188 |
-
search = DuckDuckGoSearchRun()
|
189 |
st.markdown(search.run("¿Quién es Roberto Vaquero?"))
|
190 |
if prompt := st.chat_input("¡Pregunta lo que quieras!"):
|
191 |
with st.chat_message("user"):
|
|
|
185 |
with st.chat_message(message["role"]):
|
186 |
st.markdown(message["content"])
|
187 |
|
188 |
+
search = DuckDuckGoSearchRun(region="es-es", max_results=10)
|
189 |
st.markdown(search.run("¿Quién es Roberto Vaquero?"))
|
190 |
if prompt := st.chat_input("¡Pregunta lo que quieras!"):
|
191 |
with st.chat_message("user"):
|