Spaces:
Sleeping
Sleeping
File size: 1,038 Bytes
a5d29f3 29771a3 a5d29f3 29771a3 a5d29f3 29771a3 a5d29f3 29771a3 a5d29f3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
import os
import gradio as gr
from src.brain import generate_answers
processing = False
def response(query, history):
global processing
processing = True
prompt = f"Analyze the following data to answer the question: {data.head().to_string(index=False)}\nQuestion: {query}\nAnswer:"
output = generate_answers(prompt)
history.append((query, output))
processing = False
return "", history
def loading():
return "Carregando ..."
with gr.Blocks(css=css) as app:
with gr.Column(elem_id="column_container"):
gr.HTML(title_html)
chatbot = gr.Chatbot([], elem_id="chatbot")
with gr.Column():
send = gr.Label(value="Escreva sua QUESTÃO abaixo e pressione ENTER")
query = gr.Textbox(
label="Escreva sua questão aqui:",
placeholder="Sobre o que você quer saber?",
)
clear = gr.ClearButton([query, chatbot])
gr.HTML(bts_html)
query.submit(response, [query, chatbot], [query, chatbot], queue=True)
app.launch()
|