beyzapehlivan commited on
Commit
e157d3a
·
verified ·
1 Parent(s): 0fe7eff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -16,8 +16,10 @@ model = HfApiModel(model_id="meta-llama/Llama-3.1-8B-Instruct", token=token)
16
 
17
  class AlfredAgent:
18
  def __init__(self):
 
 
19
  self.agent = CodeAgent(
20
- tools=[DuckDuckGoSearchTool()],
21
  model=model,
22
  add_base_tools=True
23
  )
 
16
 
17
  class AlfredAgent:
18
  def __init__(self):
19
+ # DuckDuckGoSearchTool'u listeden çıkarıyoruz çünkü
20
+ # add_base_tools=True onu zaten otomatik getiriyor.
21
  self.agent = CodeAgent(
22
+ tools=[],
23
  model=model,
24
  add_base_tools=True
25
  )