Csuarezg commited on
Commit
2ec0a72
·
verified ·
1 Parent(s): a663e9d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -48,13 +48,20 @@ final_answer = FinalAnswerTool()
48
  # 3) Load & instantiate your LLModel
49
  # —————————————————————————————————————————————
50
 
 
 
 
 
 
 
51
  model = HfApiModel(
52
- model_id="Qwen/Qwen2.5-Coder-32B-Instruct",
53
- max_tokens=2096,
54
  temperature=0.5,
55
  custom_role_conversions=None,
56
  )
57
 
 
58
  # —————————————————————————————————————————————
59
  # 4) Load external tools
60
  # * **Do not** call the returned object!
 
48
  # 3) Load & instantiate your LLModel
49
  # —————————————————————————————————————————————
50
 
51
+ # model = HfApiModel(
52
+ # model_id="Qwen/Qwen2.5-Coder-32B-Instruct",
53
+ # max_tokens=2096,
54
+ # temperature=0.5,
55
+ # custom_role_conversions=None,
56
+ # )
57
  model = HfApiModel(
58
+ model_id="mistralai/Mistral-7B-Instruct-v0.2", # ← FREE model
59
+ max_tokens=2048,
60
  temperature=0.5,
61
  custom_role_conversions=None,
62
  )
63
 
64
+
65
  # —————————————————————————————————————————————
66
  # 4) Load external tools
67
  # * **Do not** call the returned object!