mohammed3536 commited on
Commit
0ae30f3
·
verified ·
1 Parent(s): 40830ef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -45,7 +45,7 @@ def generate_question_with_chatgpt(context, topic):
45
  'correct_answer': "Unknown"
46
  }
47
 
48
- result = client.chat.completions.create(
49
  model="gpt-3.5-turbo",
50
  max_tokens=1024,
51
  temperature = 0.7,
@@ -55,6 +55,7 @@ def generate_question_with_chatgpt(context, topic):
55
  ]
56
 
57
  )
 
58
 
59
  print("API Response:", result) # Add this line for debugging
60
 
 
45
  'correct_answer': "Unknown"
46
  }
47
 
48
+ response = client.chat.completions.create(
49
  model="gpt-3.5-turbo",
50
  max_tokens=1024,
51
  temperature = 0.7,
 
55
  ]
56
 
57
  )
58
+ result=response.json()
59
 
60
  print("API Response:", result) # Add this line for debugging
61