Spaces:
Runtime error
Runtime error
l11 fix
Browse files
app.py
CHANGED
|
@@ -12,7 +12,7 @@ def respond(message, history):
|
|
| 12 |
#make the chat completion API call, sending the messages and other parameters to the model
|
| 13 |
response = client.chat_completion(
|
| 14 |
messages,
|
| 15 |
-
max_tokens=100
|
| 16 |
temperature=0.2
|
| 17 |
)
|
| 18 |
#extract and return the chatbot's response
|
|
|
|
| 12 |
#make the chat completion API call, sending the messages and other parameters to the model
|
| 13 |
response = client.chat_completion(
|
| 14 |
messages,
|
| 15 |
+
max_tokens=100,
|
| 16 |
temperature=0.2
|
| 17 |
)
|
| 18 |
#extract and return the chatbot's response
|