jian-mo commited on
Commit
8c67bc4
·
1 Parent(s): 72903fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -156,8 +156,7 @@ c1, c2, c3 = st.columns([1, 3, 1])
156
  # df = df.format(format_dictionary)
157
 
158
  with c2:
159
- st.text_area(
160
- results[0]['generated_text'],
161
- height=100,
162
- )
163
 
 
156
  # df = df.format(format_dictionary)
157
 
158
  with c2:
159
+ text_output=st.empty()
160
+ text_output.markdown(f"**Text:** {results[0]['generated_text']}")
161
+
 
162