jamesbright commited on
Commit
77b7221
·
verified ·
1 Parent(s): 4163334

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -3,13 +3,7 @@ import json
3
  from smolagents import CodeAgent, tool, Tool, FinalAnswerTool, HfApiModel, load_tool
4
 
5
  final_answer = FinalAnswerTool()
6
- model = HfApiModel
7
- (
8
- max_tokens=2096,
9
- temperature=0.5,
10
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
11
- custom_role_conversions=None,
12
- )
13
 
14
  class ProjectScopingTool(Tool):
15
  name = "project_scoping_tool"
 
3
  from smolagents import CodeAgent, tool, Tool, FinalAnswerTool, HfApiModel, load_tool
4
 
5
  final_answer = FinalAnswerTool()
6
+ model = HfApiModel(model_id='Qwen/Qwen2.5-Coder-32B-Instruct')
 
 
 
 
 
 
7
 
8
  class ProjectScopingTool(Tool):
9
  name = "project_scoping_tool"