Docfile commited on
Commit
a398bea
·
1 Parent(s): 708be6b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,9 +13,9 @@ def chatbot_interaction(input_text):
13
  print("Question:", input_text)
14
  response = g4f.ChatCompletion.create(
15
  model="gpt-3.5-turbo",
16
- provider=g4f.Provider.ChatBase,
17
  messages=[{"role": "user", "content": input_texxt}],
18
- stream=True,
19
  )
20
  print()
21
  print()
 
13
  print("Question:", input_text)
14
  response = g4f.ChatCompletion.create(
15
  model="gpt-3.5-turbo",
16
+ provider=g4f.Provider.ChatgptAi,
17
  messages=[{"role": "user", "content": input_texxt}],
18
+ stream=False,
19
  )
20
  print()
21
  print()