Update app.py
Browse files
app.py
CHANGED
@@ -40,7 +40,7 @@ def generate(
|
|
40 |
chat_history: list[tuple[str, str]],
|
41 |
max_new_tokens: int = 1024,
|
42 |
temperature: float = 0.1,
|
43 |
-
top_p: float = 0.
|
44 |
top_k: int = 3,
|
45 |
repetition_penalty: float = 1.4,
|
46 |
) -> Iterator[str]:
|
|
|
40 |
chat_history: list[tuple[str, str]],
|
41 |
max_new_tokens: int = 1024,
|
42 |
temperature: float = 0.1,
|
43 |
+
top_p: float = 0.4,
|
44 |
top_k: int = 3,
|
45 |
repetition_penalty: float = 1.4,
|
46 |
) -> Iterator[str]:
|