haramkoo commited on
Commit
093f707
·
1 Parent(s): 5217dbc

UI updates

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -87,7 +87,7 @@ elif option == 'Reverse model':
87
  st.write("This model asks a question that would have resulted in the context you provide (a.k.a. it traverses backward through the interview)")
88
 
89
  # Input fields
90
- input = st.text_input('Context', value=context_example) # user inputs context to construct a response (str)
91
 
92
 
93
 
 
87
  st.write("This model asks a question that would have resulted in the context you provide (a.k.a. it traverses backward through the interview)")
88
 
89
  # Input fields
90
+ input = st.text_area('Context', value=context_example) # user inputs context to construct a response (str)
91
 
92
 
93