Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -68,9 +68,12 @@ def generate_question_with_chatgpt(context):
|
|
68 |
'options': result["choices"][0]["message"].get("options", []),
|
69 |
'correct_answer': result["choices"][0]["message"].get("correct_answer", "Unknown")
|
70 |
}
|
|
|
|
|
71 |
|
72 |
return generated_question
|
73 |
|
|
|
74 |
def main():
|
75 |
# Title of the Application
|
76 |
st.title("🤖CB Quiz Generator🧠")
|
|
|
68 |
'options': result["choices"][0]["message"].get("options", []),
|
69 |
'correct_answer': result["choices"][0]["message"].get("correct_answer", "Unknown")
|
70 |
}
|
71 |
+
else:
|
72 |
+
print("Unexpected API response format.")
|
73 |
|
74 |
return generated_question
|
75 |
|
76 |
+
|
77 |
def main():
|
78 |
# Title of the Application
|
79 |
st.title("🤖CB Quiz Generator🧠")
|