jc7k commited on
Commit
2fed88d
·
1 Parent(s): e8ee295

Removed variable model

Browse files
Files changed (1) hide show
  1. app.py +0 -1
app.py CHANGED
@@ -18,7 +18,6 @@ class BasicAgent:
18
  # Initialize the agent with a model and tools
19
  agent = ToolCallingAgent(tools=[DuckDuckGoSearchTool()], model=HfApiModel())
20
  self.agent = agent
21
- print(f"Agent initialized with model: {model.model_id}")
22
  print(f"Agent initialized with tools: {self.agent.tools}")
23
 
24
  def __call__(self, question: str) -> str:
 
18
  # Initialize the agent with a model and tools
19
  agent = ToolCallingAgent(tools=[DuckDuckGoSearchTool()], model=HfApiModel())
20
  self.agent = agent
 
21
  print(f"Agent initialized with tools: {self.agent.tools}")
22
 
23
  def __call__(self, question: str) -> str: