Spaces:
Running
Running
itacaiunas
commited on
Commit
•
ecfd9de
1
Parent(s):
f56ec15
Update app.py
Browse files
app.py
CHANGED
@@ -74,14 +74,11 @@ welcome_preview_message = f"""
|
|
74 |
Bem vindo ao **{TITLE}**! Diga algo como:
|
75 |
"{EXAMPLE_INPUT}"
|
76 |
|
77 |
-
"""
|
78 |
-
|
79 |
-
atencao = f"""
|
80 |
Um projeto oferecido por <a href="https://mundodageografia.com.br/chatgeo">Mundo da Geografia!</a>
|
81 |
-
|
82 |
"""
|
83 |
|
84 |
-
|
|
|
85 |
textbox_preview = gr.Textbox(scale=7, container=False, value=EXAMPLE_INPUT)
|
86 |
|
87 |
demo = gr.ChatInterface(test_preview_chatbot, chatbot=chatbot_preview, textbox=textbox_preview)
|
|
|
74 |
Bem vindo ao **{TITLE}**! Diga algo como:
|
75 |
"{EXAMPLE_INPUT}"
|
76 |
|
|
|
|
|
|
|
77 |
Um projeto oferecido por <a href="https://mundodageografia.com.br/chatgeo">Mundo da Geografia!</a>
|
|
|
78 |
"""
|
79 |
|
80 |
+
|
81 |
+
chatbot_preview = gr.Chatbot(layout="panel", value=[(None, welcome_preview_message)])
|
82 |
textbox_preview = gr.Textbox(scale=7, container=False, value=EXAMPLE_INPUT)
|
83 |
|
84 |
demo = gr.ChatInterface(test_preview_chatbot, chatbot=chatbot_preview, textbox=textbox_preview)
|