Spaces:
Sleeping
Sleeping
File size: 673 Bytes
53e0a4a dea6e8d 205c1d0 21403be 692e3e8 0c20ca5 205c1d0 a6db4fa dd9b721 4f4d5be |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import streamlit as st
import getpass
import os
from modelo import get_chain
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)
chain = get_chain()
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?")
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() |