mohammed3536 commited on
Commit
17acf5c
·
verified ·
1 Parent(s): fde8398

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -2
app.py CHANGED
@@ -70,12 +70,24 @@ def generate_question_with_chatgpt(context, topic):
70
  )
71
  result = response.json()
72
 
73
- print("API Response:", result) # Add this line for debugging
74
 
75
- generated_question['content'], generated_question['options'], generated_question['correct_answer'] = extract_options_and_correct_answer(result)
 
 
 
 
 
 
 
 
 
 
 
76
 
77
  return generated_question
78
 
 
79
  def main():
80
  # Title of the Application
81
  st.header("🤖CB Quiz Generator🧠", divider='rainbow')
 
70
  )
71
  result = response.json()
72
 
73
+ print("API Response:", result) # Print the API response for debugging
74
 
75
+ # Modify the logic based on the actual structure of the 'result'
76
+ if 'choices' in result:
77
+ choices = result['choices']
78
+ if choices and isinstance(choices, list):
79
+ message = choices[0].get('message', {})
80
+ content = message.get('content', "Unable to generate a question..")
81
+ options = message.get('options', [])
82
+ correct_answer = message.get('correct_answer', "Unknown")
83
+
84
+ generated_question['content'] = content
85
+ generated_question['options'] = options
86
+ generated_question['correct_answer'] = correct_answer
87
 
88
  return generated_question
89
 
90
+
91
  def main():
92
  # Title of the Application
93
  st.header("🤖CB Quiz Generator🧠", divider='rainbow')