ishaandtotoro commited on
Commit
8743b36
·
verified ·
1 Parent(s): 9d4ae10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ def respond(message, history):
20
 
21
  response = client.chat_completion(messages, max_tokens=100)
22
 
23
- return response['choice'][0]['message']['content'].strip()
24
 
25
 
26
 
 
20
 
21
  response = client.chat_completion(messages, max_tokens=100)
22
 
23
+ return response['choices'][0]['message']['content'].strip()
24
 
25
 
26