graredcr commited on
Commit
b244e1e
·
1 Parent(s): 57999b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -16,7 +16,8 @@ def semanticComparativeClassification():
16
  ]
17
 
18
  for api_url in apis_urls:
19
- wt.extend(api_url)
 
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
- wt = ['initialised text']
106
- st.write(wt)
 
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