Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -77,8 +77,9 @@ def generate_question_with_chatgpt(context, topic):
|
|
77 |
choice = result['choices'][0]
|
78 |
if 'message' in choice and isinstance(choice['message'], dict):
|
79 |
message = choice['message']
|
80 |
-
|
81 |
-
|
|
|
82 |
options = message.get('options', [])
|
83 |
correct_answer = message.get('correct_answer', "Unknown")
|
84 |
|
@@ -88,9 +89,6 @@ def generate_question_with_chatgpt(context, topic):
|
|
88 |
|
89 |
return generated_question
|
90 |
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
def main():
|
95 |
# Title of the Application
|
96 |
st.header("🤖CB Quiz Generator🧠", divider='rainbow')
|
|
|
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 |
|
|
|
89 |
|
90 |
return generated_question
|
91 |
|
|
|
|
|
|
|
92 |
def main():
|
93 |
# Title of the Application
|
94 |
st.header("🤖CB Quiz Generator🧠", divider='rainbow')
|