Spaces:
Running
Running
Commit
·
a5c0568
1
Parent(s):
da9bbd9
Even lower
Browse files
app.py
CHANGED
|
@@ -33,8 +33,8 @@ def generate(
|
|
| 33 |
message: str,
|
| 34 |
chat_history: list[tuple[str, str]],
|
| 35 |
max_new_tokens: int = 1024,
|
| 36 |
-
temperature: float = 0.
|
| 37 |
-
top_p: float = 0.
|
| 38 |
top_k: int = 40,
|
| 39 |
repetition_penalty: float = 1.2,
|
| 40 |
) -> Iterator[str]:
|
|
|
|
| 33 |
message: str,
|
| 34 |
chat_history: list[tuple[str, str]],
|
| 35 |
max_new_tokens: int = 1024,
|
| 36 |
+
temperature: float = 0.06,
|
| 37 |
+
top_p: float = 0.95,
|
| 38 |
top_k: int = 40,
|
| 39 |
repetition_penalty: float = 1.2,
|
| 40 |
) -> Iterator[str]:
|