Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -53,7 +53,7 @@ def ask_model(model_id, system_prompt, user_input):
|
|
| 53 |
model=model_id,
|
| 54 |
messages=messages,
|
| 55 |
max_tokens=1000,
|
| 56 |
-
temperature=0.
|
| 57 |
stream=True
|
| 58 |
):
|
| 59 |
if hasattr(chunk, "choices") and chunk.choices and len(chunk.choices) > 0:
|
|
|
|
| 53 |
model=model_id,
|
| 54 |
messages=messages,
|
| 55 |
max_tokens=1000,
|
| 56 |
+
temperature=0.4,
|
| 57 |
stream=True
|
| 58 |
):
|
| 59 |
if hasattr(chunk, "choices") and chunk.choices and len(chunk.choices) > 0:
|