Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,8 @@ def semanticComparativeClassification():
|
|
16 |
]
|
17 |
|
18 |
for api_url in apis_urls:
|
19 |
-
|
|
|
20 |
semanticComparativeClassificationCall(api_url)
|
21 |
|
22 |
|
@@ -102,6 +103,7 @@ st.text_area( "Respuesta: ", key= "respuesta", height=200 )
|
|
102 |
|
103 |
# Section 1
|
104 |
#button = st.button('Button')
|
105 |
-
|
106 |
-
|
|
|
107 |
|
|
|
16 |
]
|
17 |
|
18 |
for api_url in apis_urls:
|
19 |
+
logtxt = logtxt + api_url
|
20 |
+
logtxtbox.text_area("Logging: ", logtxt, height=500)
|
21 |
semanticComparativeClassificationCall(api_url)
|
22 |
|
23 |
|
|
|
103 |
|
104 |
# Section 1
|
105 |
#button = st.button('Button')
|
106 |
+
logtxtbox = st.empty()
|
107 |
+
logtxt = 'start'
|
108 |
+
logtxtbox.text_area("Logging: ",logtxt, height = 500)
|
109 |
|