Spaces:
Running
Running
Remove default model since this one seems to throw an error
Browse files
app.py
CHANGED
|
@@ -26,7 +26,7 @@ hf_token = os.getenv("HF_TOKEN")
|
|
| 26 |
login(hf_token)
|
| 27 |
hf_model = "Qwen/Qwen2.5-Coder-32B-Instruct" # HfApiModel default model
|
| 28 |
|
| 29 |
-
model = HFInferenceModel(
|
| 30 |
|
| 31 |
# Initialize the web search tool
|
| 32 |
search_tool = DuckDuckGoSearchTool()
|
|
|
|
| 26 |
login(hf_token)
|
| 27 |
hf_model = "Qwen/Qwen2.5-Coder-32B-Instruct" # HfApiModel default model
|
| 28 |
|
| 29 |
+
model = HFInferenceModel(token=hf_token)
|
| 30 |
|
| 31 |
# Initialize the web search tool
|
| 32 |
search_tool = DuckDuckGoSearchTool()
|