Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
|
|
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 |
|