Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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) #
|
74 |
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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')
|