Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -68,25 +68,24 @@ def semanticComparativeClassificationCall(api_url: str):
|
|
68 |
|
69 |
#st.write(output)
|
70 |
if "error" in output:
|
71 |
-
st.
|
72 |
else:
|
73 |
index=0
|
74 |
for i in output:
|
75 |
-
st.
|
76 |
#container.write(i," - ", sentences[index])
|
77 |
index = index + 1
|
78 |
-
maxim = max(output)
|
79 |
-
st.session_state.logresp = st.session_state.logresp+'MAX:'+str(maxim)+'\n'
|
80 |
|
81 |
sentenceindex = output.index(maxim)
|
82 |
|
83 |
-
st.
|
84 |
|
85 |
if output[sentenceindex] < 0.3 :
|
86 |
-
st.
|
87 |
st.session_state["respuesta"]= st.session_state["respuesta"] +api_url+"\nNo tengo respuesta para esto, ¿me lo explicas mejor o te pongo en contacto con un humano?"+"\n\n"
|
88 |
else:
|
89 |
-
st.
|
90 |
st.session_state["respuesta"] = st.session_state["respuesta"] +api_url+"\nTema reconocido: \n"+str(sentences[sentenceindex])+"\n\n"
|
91 |
|
92 |
|
@@ -101,12 +100,4 @@ st.session_state.logresp = ""
|
|
101 |
st.title('Reconocimiento semántico')
|
102 |
title = st.text_input('Pregunta', '', on_change=semanticComparativeClassification,key='mytext')
|
103 |
|
104 |
-
st.text_area( "Respuesta: ", key= "respuesta", height=200 )
|
105 |
-
st.text_area( "Log: ", key= "logresp", height=600 )
|
106 |
-
|
107 |
-
# Section 1
|
108 |
-
#button = st.button('Button')
|
109 |
-
#logtxtbox = st.empty()
|
110 |
-
#logtxtbox.text_area("Logging: ",logtxt, height = 500)
|
111 |
-
|
112 |
-
#logtxtbox = st.markdown('ssss', unsafe_allow_html=True)
|
|
|
68 |
|
69 |
#st.write(output)
|
70 |
if "error" in output:
|
71 |
+
st.write(output["error"])
|
72 |
else:
|
73 |
index=0
|
74 |
for i in output:
|
75 |
+
st.write( st.session_state.logresp+ str(i) +' - '+sentences[index])
|
76 |
#container.write(i," - ", sentences[index])
|
77 |
index = index + 1
|
78 |
+
maxim = max(output)
|
|
|
79 |
|
80 |
sentenceindex = output.index(maxim)
|
81 |
|
82 |
+
st.write(st.session_state.logresp+str(sentenceindex))
|
83 |
|
84 |
if output[sentenceindex] < 0.3 :
|
85 |
+
st.write( "\nNo tengo respuesta para esto, ¿me lo explicas mejor o te pongo en contacto con un humano? ")
|
86 |
st.session_state["respuesta"]= st.session_state["respuesta"] +api_url+"\nNo tengo respuesta para esto, ¿me lo explicas mejor o te pongo en contacto con un humano?"+"\n\n"
|
87 |
else:
|
88 |
+
st.write("Tema reconocido: "+ str(sentences[sentenceindex]))
|
89 |
st.session_state["respuesta"] = st.session_state["respuesta"] +api_url+"\nTema reconocido: \n"+str(sentences[sentenceindex])+"\n\n"
|
90 |
|
91 |
|
|
|
100 |
st.title('Reconocimiento semántico')
|
101 |
title = st.text_input('Pregunta', '', on_change=semanticComparativeClassification,key='mytext')
|
102 |
|
103 |
+
st.text_area( "Respuesta: ", key= "respuesta", height=200 )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|