Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import os
|
| 2 |
import time
|
| 3 |
import uuid
|
|
@@ -159,8 +163,8 @@ bot_inputs = [
|
|
| 159 |
]
|
| 160 |
|
| 161 |
with gr.Blocks() as demo:
|
| 162 |
-
gr.HTML(TITLE)
|
| 163 |
-
gr.HTML(SUBTITLE)
|
| 164 |
with gr.Column():
|
| 165 |
chatbot_component.render()
|
| 166 |
with gr.Row():
|
|
|
|
| 1 |
+
# Definir las variables TITLE y SUBTITLE
|
| 2 |
+
TITLE = "Generative AI Chatbot" # Aquí pones tu título
|
| 3 |
+
SUBTITLE = "Interactúa con nuestro modelo de AI para generar respuestas creativas" # Aquí pones tu subtítulo
|
| 4 |
+
|
| 5 |
import os
|
| 6 |
import time
|
| 7 |
import uuid
|
|
|
|
| 163 |
]
|
| 164 |
|
| 165 |
with gr.Blocks() as demo:
|
| 166 |
+
gr.HTML(TITLE) # Ahora TITLE está definido
|
| 167 |
+
gr.HTML(SUBTITLE) # Ahora SUBTITLE está definido
|
| 168 |
with gr.Column():
|
| 169 |
chatbot_component.render()
|
| 170 |
with gr.Row():
|