Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ from transformers import (
|
|
14 |
)
|
15 |
|
16 |
# Configuration Constants
|
17 |
-
MODEL_ID= "
|
18 |
|
19 |
|
20 |
# Understand]: Analyze the question to identify key details and clarify the goal.
|
@@ -197,7 +197,7 @@ def chat_response(
|
|
197 |
chat_display: str,
|
198 |
system_prompt: str,
|
199 |
temperature: float = 0.3,
|
200 |
-
max_new_tokens: int =
|
201 |
top_p: float = 0.1,
|
202 |
top_k: int = 45,
|
203 |
penalty: float = 1.5,
|
@@ -308,7 +308,7 @@ def main():
|
|
308 |
minimum=128,
|
309 |
maximum=32000,
|
310 |
step=128,
|
311 |
-
value=
|
312 |
label="Max Tokens",
|
313 |
)
|
314 |
top_p = gr.Slider(
|
|
|
14 |
)
|
15 |
|
16 |
# Configuration Constants
|
17 |
+
MODEL_ID= "deepseek-ai/DeepSeek-R1-Distill-Qwen-14B"
|
18 |
|
19 |
|
20 |
# Understand]: Analyze the question to identify key details and clarify the goal.
|
|
|
197 |
chat_display: str,
|
198 |
system_prompt: str,
|
199 |
temperature: float = 0.3,
|
200 |
+
max_new_tokens: int =4096 ,
|
201 |
top_p: float = 0.1,
|
202 |
top_k: int = 45,
|
203 |
penalty: float = 1.5,
|
|
|
308 |
minimum=128,
|
309 |
maximum=32000,
|
310 |
step=128,
|
311 |
+
value=4096,
|
312 |
label="Max Tokens",
|
313 |
)
|
314 |
top_p = gr.Slider(
|