mohammed3536 commited on
Commit
627ee82
·
verified ·
1 Parent(s): ea70079

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -13
app.py CHANGED
@@ -73,23 +73,26 @@ def generate_question_with_chatgpt(context, topic):
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 and isinstance(result['choices'], list) and result['choices']:
77
- choice = result['choices'][0]
78
- if 'message' in choice and isinstance(choice['message'], dict):
79
- message = choice['message']
80
- content = message.get('content')
81
-
82
- if content:
83
- options = message.get('options', [])
84
- correct_answer = message.get('correct_answer', "Unknown")
85
-
86
- generated_question['content'] = content
87
- generated_question['options'] = options if isinstance(options, list) else []
88
- generated_question['correct_answer'] = correct_answer
 
 
89
 
90
  return generated_question
91
 
92
 
 
93
  def main():
94
  # Title of the Application
95
  st.header("🤖CB Quiz Generator🧠", divider='rainbow')
 
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 isinstance(choices, list) and choices:
79
+ choice = choices[0]
80
+ if 'message' in choice and isinstance(choice['message'], dict):
81
+ message = choice['message']
82
+ content = message.get('content')
83
+
84
+ if content:
85
+ options = message.get('options', [])
86
+ correct_answer = message.get('correct_answer', "Unknown")
87
+
88
+ generated_question['content'] = content
89
+ generated_question['options'] = options if isinstance(options, list) else []
90
+ generated_question['correct_answer'] = correct_answer
91
 
92
  return generated_question
93
 
94
 
95
+
96
  def main():
97
  # Title of the Application
98
  st.header("🤖CB Quiz Generator🧠", divider='rainbow')