File size: 736 Bytes
53e0a4a
dea6e8d
 
205c1d0
495c008
21403be
692e3e8
0c20ca5
dd9b721
495c008
56b163f
 
60d90af
 
4f4d5be
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import streamlit as st
import getpass
import os
from modelo import get_chain
st.set_page_config(layout="wide")

os.environ["OPENAI_API_KEY"] = st.secrets['OPENAI_API_KEY']  # agregada en la config de hugginface
st.markdown("<h1 style='text-align: center; color: yellow;'>Chatbot SII</h1>", unsafe_allow_html=True)
st.header("Este es un ChatBot 🤖🦾 entrenado con las preguntas frecuentes del sitio del servicios de impuestos interno de Chile.")

pregunta = st.text_area('Ingresa tu pregunta:', value="Que es un APA?")


chain = get_chain(st.secrets['OPENAI_API_KEY'])
tmp_button = st.button("CLICK")
if tmp_button: #Esperar al boton
    out = chain.invoke(pregunta)
    st.write(out)
    #st.rerun() #Restart app
else:
    st.stop()