Spaces:
Sleeping
Sleeping
Update app.py
Browse filesadded hf token
app.py
CHANGED
@@ -169,7 +169,8 @@ model = HfApiModel(
|
|
169 |
max_tokens=2096,
|
170 |
temperature=0.5,
|
171 |
model_id='Qwen/Qwen2.5-Coder-32B-Instruct', # it is possible that this model may be overloaded
|
172 |
-
custom_role_conversions=None
|
|
|
173 |
)
|
174 |
|
175 |
|
|
|
169 |
max_tokens=2096,
|
170 |
temperature=0.5,
|
171 |
model_id='Qwen/Qwen2.5-Coder-32B-Instruct', # it is possible that this model may be overloaded
|
172 |
+
custom_role_conversions=None,
|
173 |
+
token=os.getenv('hf_token')
|
174 |
)
|
175 |
|
176 |
|