mohammed3536 commited on
Commit
fd906ed
·
verified ·
1 Parent(s): b4fc542

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -38,12 +38,14 @@ def generate_mcqs_on_topic(text, topic, num_mcqs=5):
38
 
39
  def extract_options_and_correct_answer(api_response):
40
  if 'choices' in api_response:
41
- message = api_response['choices'][0]['message']
42
- content = message.get('content', "Unable to generate a question..")
43
- options = message.get('options', [])
44
- correct_answer = message.get('correct_answer', "Unknown")
45
-
46
- return content, options, correct_answer
 
 
47
 
48
  return "Unexpected API response format.", [], "Unknown"
49
 
 
38
 
39
  def extract_options_and_correct_answer(api_response):
40
  if 'choices' in api_response:
41
+ choices = api_response['choices']
42
+ if choices:
43
+ message = choices[0].get('message', {})
44
+ content = message.get('content', "Unable to generate a question..")
45
+ options = message.get('options', [])
46
+ correct_answer = message.get('correct_answer', "Unknown")
47
+
48
+ return content, options, correct_answer
49
 
50
  return "Unexpected API response format.", [], "Unknown"
51