Update app.py
Browse files
app.py
CHANGED
|
@@ -210,8 +210,6 @@ def toggle_history():
|
|
| 210 |
return history_log if show_history_flag else {}
|
| 211 |
|
| 212 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
| 213 |
-
gr.Markdown("# 🧠 Anomalia Agent")
|
| 214 |
-
|
| 215 |
with gr.Row():
|
| 216 |
with gr.Column(scale=1):
|
| 217 |
gr.Markdown("## ⚙️ Configurações")
|
|
@@ -223,6 +221,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
| 223 |
csv_file = gr.File(label="📂 Enviar novo CSV", file_types=[".csv"])
|
| 224 |
|
| 225 |
with gr.Column(scale=4):
|
|
|
|
| 226 |
chatbot = gr.Chatbot(height=600)
|
| 227 |
msg = gr.Textbox(placeholder="Digite sua pergunta aqui...", label=" ", lines=1)
|
| 228 |
btn = gr.Button("Enviar", variant="primary")
|
|
|
|
| 210 |
return history_log if show_history_flag else {}
|
| 211 |
|
| 212 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
|
|
|
|
|
| 213 |
with gr.Row():
|
| 214 |
with gr.Column(scale=1):
|
| 215 |
gr.Markdown("## ⚙️ Configurações")
|
|
|
|
| 221 |
csv_file = gr.File(label="📂 Enviar novo CSV", file_types=[".csv"])
|
| 222 |
|
| 223 |
with gr.Column(scale=4):
|
| 224 |
+
gr.Markdown("# 🧠 Anomalia Agent")
|
| 225 |
chatbot = gr.Chatbot(height=600)
|
| 226 |
msg = gr.Textbox(placeholder="Digite sua pergunta aqui...", label=" ", lines=1)
|
| 227 |
btn = gr.Button("Enviar", variant="primary")
|