mohammed3536 commited on
Commit
b6b79c3
·
verified ·
1 Parent(s): 516d157

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
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🧠")