bugfix: format
Browse files
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
|
|
|
|
|
|
|
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 |
|