Spaces:
Runtime error
Runtime error
Commit
·
df486f0
1
Parent(s):
9c0c26e
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,12 @@
|
|
1 |
-
#
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
import streamlit as st
|
5 |
import torch
|
@@ -20,9 +27,9 @@ Javier Bueno también aseveró que quienes coordinaban el proceso fueron el exse
|
|
20 |
|
21 |
texto = st.text_area('Cargue un texto de hasta 5 hojas, 1500 palabras, ó 15000 caracteres: ', height=200)
|
22 |
|
23 |
-
preg_1 = st.text_input('Pregunta 1', '¿
|
24 |
-
preg_2 = st.text_input('Pregunta 2', '¿
|
25 |
-
preg_3 = st.text_input('Pregunta 3', '¿
|
26 |
|
27 |
pregs = [preg_1, preg_2, preg_3]
|
28 |
|
|
|
1 |
+
# -*- coding: utf-8 -*-
|
2 |
+
'''
|
3 |
+
José Carlos Machicao
|
4 |
+
GestioDinámica
|
5 |
+
Fecha de producción: 2022_01_31
|
6 |
+
Fecha de actualización 2022_02_15
|
7 |
+
'''
|
8 |
+
|
9 |
+
st.image('gdmk.png', width=150)
|
10 |
|
11 |
import streamlit as st
|
12 |
import torch
|
|
|
27 |
|
28 |
texto = st.text_area('Cargue un texto de hasta 5 hojas, 1500 palabras, ó 15000 caracteres: ', height=200)
|
29 |
|
30 |
+
preg_1 = st.text_input('Pregunta 1', '¿Cuál es el problema?')
|
31 |
+
preg_2 = st.text_input('Pregunta 2', '¿Quienes son los responsables?')
|
32 |
+
preg_3 = st.text_input('Pregunta 3', '¿Cómo se podría resolver el problema?')
|
33 |
|
34 |
pregs = [preg_1, preg_2, preg_3]
|
35 |
|