hyechanjun commited on
Commit
7abfa7c
·
1 Parent(s): 9ee1c0c

Added descriptions

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -53,6 +53,13 @@ option = st.selectbox(
53
  'Please select a model.',
54
  ('interview-question-remake', 'interview-length-tagged', 'reverse-interview-question'))
55
 
 
 
 
 
 
 
 
56
  if st.button('Submit'):
57
  output = genQuestion(option, input)
58
  print(output)
 
53
  'Please select a model.',
54
  ('interview-question-remake', 'interview-length-tagged', 'reverse-interview-question'))
55
 
56
+ if option == 'interview-question-remake':
57
+ st.write("This is the re-fine-tuned base model for our interview AI. It returns strings terminating in a question mark (?).")
58
+ elif option == 'interview-length-tagged':
59
+ st.write("This is a length-tagged version of our interview AI. You can specify how long its responses should be (ranges of multiples of 10)")
60
+ elif option == 'reverse-interview-question':
61
+ 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)")
62
+
63
  if st.button('Submit'):
64
  output = genQuestion(option, input)
65
  print(output)