Segizu commited on
Commit
51592cd
·
1 Parent(s): d27fb3d

primer commit

Browse files
Files changed (2) hide show
  1. agent.json +1 -1
  2. app.py +1 -1
agent.json CHANGED
@@ -11,7 +11,7 @@
11
  "temperature": 0.5,
12
  "last_input_token_count": null,
13
  "last_output_token_count": null,
14
- "model_id": "Qwen/Qwen2.5-Coder-32B-Instruct",
15
  "custom_role_conversions": null
16
  }
17
  },
 
11
  "temperature": 0.5,
12
  "last_input_token_count": null,
13
  "last_output_token_count": null,
14
+ "model_id": "Qwen/Qwen2.5-Coder-7B-Instruct",
15
  "custom_role_conversions": null
16
  }
17
  },
app.py CHANGED
@@ -38,7 +38,7 @@ final_answer = FinalAnswerTool()
38
  model = HfApiModel(
39
  max_tokens=2096,
40
  temperature=0.5,
41
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
42
  custom_role_conversions=None,
43
  )
44
 
 
38
  model = HfApiModel(
39
  max_tokens=2096,
40
  temperature=0.5,
41
+ model_id='Qwen/Qwen2.5-Coder-7B-Instruct',
42
  custom_role_conversions=None,
43
  )
44