mingbaer commited on
Commit
e418439
·
verified ·
1 Parent(s): baeb372

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,10 +11,10 @@ def respond(message, history):
11
 
12
  response = client.chat_completion(
13
  messages,
14
- max_tokens=100
15
  )
16
  return response.choices[0].message.content.strip()
17
 
18
  chatbot = gr.ChatInterface(respond)
19
 
20
- chatbot.launch(share = True)
 
11
 
12
  response = client.chat_completion(
13
  messages,
14
+ max_tokens=100,
15
  )
16
  return response.choices[0].message.content.strip()
17
 
18
  chatbot = gr.ChatInterface(respond)
19
 
20
+ chatbot.launch(share=True)