Spaces:
Running
Running
itacaiunas
commited on
Commit
•
452b418
1
Parent(s):
425aa78
Update app.py
Browse files
app.py
CHANGED
@@ -79,6 +79,17 @@ Bem vindo ao **{TITLE}**! Diga algo como:
|
|
79 |
chatbot_preview = gr.Chatbot(layout="panel", value=[(None, welcome_preview_message)])
|
80 |
textbox_preview = gr.Textbox(scale=7, container=False, value=EXAMPLE_INPUT)
|
81 |
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
|
84 |
demo.launch()
|
|
|
79 |
chatbot_preview = gr.Chatbot(layout="panel", value=[(None, welcome_preview_message)])
|
80 |
textbox_preview = gr.Textbox(scale=7, container=False, value=EXAMPLE_INPUT)
|
81 |
|
82 |
+
about_message = f"""
|
83 |
+
**Sobre o ChatGEO**
|
84 |
+
|
85 |
+
O ChatGEO é um assistente virtual especializado em geografia, projetado para ajudar estudantes a explorar e compreender diversos tópicos relacionados ao mundo ao seu redor. Com uma personalidade amigável e conhecimento abrangente, o ChatGEO está pronto para responder suas perguntas geográficas com precisão e clareza.
|
86 |
+
|
87 |
+
Se divirta aprendendo geografia com o ChatGEO!
|
88 |
+
"""
|
89 |
+
|
90 |
+
about_tab = gr.Tab("Sobre", about_message)
|
91 |
+
|
92 |
+
demo = gr.Interface(test_preview_chatbot, chatbot=chatbot_preview, textbox=textbox_preview, tabs=[about_tab])
|
93 |
+
|
94 |
|
95 |
demo.launch()
|