Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -66,9 +66,8 @@ def count_images(message, history):
|
|
66 |
# Crear la interfaz de Gradio
|
67 |
demo = gr.ChatInterface(
|
68 |
response, # Funci贸n de chat para manejar texto y archivos
|
69 |
-
examples=[
|
70 |
-
|
71 |
-
],
|
72 |
multimodal=True, # Activar la modalidad multimodal
|
73 |
textbox=gr.MultimodalTextbox( # Configuraci贸n del cuadro de texto multimodal
|
74 |
file_count="multiple", # Permitir m煤ltiples archivos
|
|
|
66 |
# Crear la interfaz de Gradio
|
67 |
demo = gr.ChatInterface(
|
68 |
response, # Funci贸n de chat para manejar texto y archivos
|
69 |
+
examples=["Hello", "Am I cool?", "Are tomatoes vegetables?"],
|
70 |
+
cache_examples=True,
|
|
|
71 |
multimodal=True, # Activar la modalidad multimodal
|
72 |
textbox=gr.MultimodalTextbox( # Configuraci贸n del cuadro de texto multimodal
|
73 |
file_count="multiple", # Permitir m煤ltiples archivos
|