Update app.py
Browse files
app.py
CHANGED
|
@@ -60,7 +60,7 @@ def predict_chat(message: str, history: list):
|
|
| 60 |
stream = client.chat.completions.create(
|
| 61 |
model=MODEL_ID,
|
| 62 |
messages=messages,
|
| 63 |
-
max_tokens=
|
| 64 |
temperature=0.7,
|
| 65 |
top_p=0.95,
|
| 66 |
stream=True, # ์๋ต์ ํ ํฐ(๊ธ์) ๋จ์ ์กฐ๊ฐ์ผ๋ก ์ค์๊ฐ ์์ ํฉ๋๋ค.
|
|
|
|
| 60 |
stream = client.chat.completions.create(
|
| 61 |
model=MODEL_ID,
|
| 62 |
messages=messages,
|
| 63 |
+
max_tokens=8192,
|
| 64 |
temperature=0.7,
|
| 65 |
top_p=0.95,
|
| 66 |
stream=True, # ์๋ต์ ํ ํฐ(๊ธ์) ๋จ์ ์กฐ๊ฐ์ผ๋ก ์ค์๊ฐ ์์ ํฉ๋๋ค.
|