Zekun Wu commited on
Commit
171bf3d
·
1 Parent(s): 174278e
Files changed (1) hide show
  1. app.py +23 -12
app.py CHANGED
@@ -39,19 +39,30 @@ if not st.session_state.get('password_correct', False):
39
  else:
40
  model_name = st.selectbox('Select a model:', ['gpt4-1106', 'gpt35-1106'])
41
 
42
- # Option to select an example type
43
- example_type = st.radio("Choose an example type:", ('good', 'bad'))
44
- example = examples[example_type]
45
 
46
- st.write('### Example Question')
47
- st.write(example['question'])
 
 
 
 
 
48
 
49
- st.write('### Example Explanation')
50
- st.write(example['explanation'])
 
 
 
 
51
 
52
  if st.button('Evaluate Explanation'):
53
- eval = evaluator(model_name)
54
- scores = eval(example['question'], example['explanation'])
55
- st.write('### Scores')
56
- for principle, score in scores.items():
57
- st.write(f"{principle}: {score}")
 
 
 
 
39
  else:
40
  model_name = st.selectbox('Select a model:', ['gpt4-1106', 'gpt35-1106'])
41
 
42
+ # User choice between predefined examples or their own input
43
+ input_type = st.radio("Choose input type:", ('Use predefined example', 'Enter your own'))
 
44
 
45
+ if input_type == 'Use predefined example':
46
+ example_type = st.radio("Select an example type:", ('good', 'bad'))
47
+ question = examples[example_type]['question']
48
+ explanation = examples[example_type]['explanation']
49
+ else:
50
+ question = st.text_input('Enter your question:', '')
51
+ explanation = st.text_input('Enter your explanation:', '')
52
 
53
+ # Display the selected or entered question and explanation
54
+ st.write('### Question')
55
+ st.write(question if question else 'No question entered yet.')
56
+
57
+ st.write('### Explanation')
58
+ st.write(explanation if explanation else 'No explanation entered yet.')
59
 
60
  if st.button('Evaluate Explanation'):
61
+ if question and explanation:
62
+ eval = evaluator(model_name)
63
+ scores = eval(question, explanation)
64
+ st.write('### Scores')
65
+ for principle, score in scores.items():
66
+ st.write(f"{principle}: {score}")
67
+ else:
68
+ st.error('Please enter both a question and an explanation to evaluate.')