Waflon commited on
Commit
60d90af
1 Parent(s): ea7f6c8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,9 +6,9 @@ from modelo import get_chain
6
 
7
  os.environ["OPENAI_API_KEY"] = st.secrets['OPENAI_API_KEY'] # agregada en la config de hugginface
8
  st.markdown("<h1 style='text-align: center; color: yellow;'>Chatbot SII</h1>", unsafe_allow_html=True)
9
- chain = get_chain(st.secrets['OPENAI_API_KEY'])
10
-
11
  st.header("Este es un ChatBot 🤖🦾 entrenado con las preguntas frecuentes del sitio del servicios de impuestos interno de Chile.")
 
 
12
  pregunta = st.text_area('Ingresa tu pregunta:', value="Que es un APA?")
13
  tmp_button = st.button("CLICK")
14
  if tmp_button: #Esperar al boton
 
6
 
7
  os.environ["OPENAI_API_KEY"] = st.secrets['OPENAI_API_KEY'] # agregada en la config de hugginface
8
  st.markdown("<h1 style='text-align: center; color: yellow;'>Chatbot SII</h1>", unsafe_allow_html=True)
 
 
9
  st.header("Este es un ChatBot 🤖🦾 entrenado con las preguntas frecuentes del sitio del servicios de impuestos interno de Chile.")
10
+
11
+ chain = get_chain(st.secrets['OPENAI_API_KEY'])
12
  pregunta = st.text_area('Ingresa tu pregunta:', value="Que es un APA?")
13
  tmp_button = st.button("CLICK")
14
  if tmp_button: #Esperar al boton