Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -16,8 +16,6 @@ def respond(message, history):
|
|
| 16 |
for message in client.chat_completion(
|
| 17 |
messages,
|
| 18 |
max_tokens=100, # change the length of message
|
| 19 |
-
temperature = 0.1,
|
| 20 |
-
top_p = 0.7,
|
| 21 |
stream = True,
|
| 22 |
):
|
| 23 |
token = messages.choices[0].delta.content
|
|
|
|
| 16 |
for message in client.chat_completion(
|
| 17 |
messages,
|
| 18 |
max_tokens=100, # change the length of message
|
|
|
|
|
|
|
| 19 |
stream = True,
|
| 20 |
):
|
| 21 |
token = messages.choices[0].delta.content
|