JuanMa360 commited on
Commit
26325b4
1 Parent(s): 3efcae6

bugfix: format

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -35,6 +35,9 @@ def slow_api_response(message, history):
35
  yield f"Error: {str(e)}"
36
 
37
  # Interfaz Gradio usando la función slow_api_response
38
- demo = gr.ChatInterface(fn=slow_api_response).launch()
 
 
 
39
 
40
 
 
35
  yield f"Error: {str(e)}"
36
 
37
  # Interfaz Gradio usando la función slow_api_response
38
+ demo = gr.ChatInterface(fn=slow_api_response,
39
+ title="AI Assistant", # <--- Title/Name of app
40
+ description="Esta app simula una conversación con un asistente virtual que conoce una propiedad.",
41
+ ).launch()
42
 
43