-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.py
69 lines (52 loc) · 1.9 KB
/
Home.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import time
import streamlit as st
from utils import cria_chain_conversa, PASTA_ARQUIVOS
def sidebar():
uploaded_pdfs = st.file_uploader(
'Adicione seus arquivos pdf',
type=['.pdf'],
accept_multiple_files=True
)
if not uploaded_pdfs is None:
for arquivo in PASTA_ARQUIVOS.glob('*.pdf'):
arquivo.unlink()
for pdf in uploaded_pdfs:
with open(PASTA_ARQUIVOS / pdf.name, 'wb') as f:
f.write(pdf.read())
label_botao = 'Inicializar ChatBot'
if 'chain' in st.session_state:
label_botao = 'Atualizar ChatBot'
if st.button(label_botao, use_container_width=True):
if len(list(PASTA_ARQUIVOS.glob('*.pdf'))) == 0:
st.error('Adicione arquivos .pdf para inicializar o chatbot')
else:
st.success('Inicializando o ChatBot...')
cria_chain_conversa()
st.rerun()
def chat_window():
st.header('🤖 Bem-vindo ao Chat com PDFs da Asimov', divider=True)
if not 'chain' in st.session_state:
st.error('Faça o upload de PDFs para começar!')
st.stop()
chain = st.session_state['chain']
memory = chain.memory
mensagens = memory.load_memory_variables({})['chat_history']
container = st.container()
for mensagem in mensagens:
chat = container.chat_message(mensagem.type)
chat.markdown(mensagem.content)
nova_mensagem = st.chat_input('Converse com seus documentos...')
if nova_mensagem:
chat = container.chat_message('human')
chat.markdown(nova_mensagem)
chat = container.chat_message('ai')
chat.markdown('Gerando resposta')
resposta = chain.invoke({'question': nova_mensagem})
st.session_state['ultima_resposta'] = resposta
st.rerun()
def main():
with st.sidebar:
sidebar()
chat_window()
if __name__ == '__main__':
main()