SuccessfulCrab commited on
Commit
5e56f62
·
verified ·
1 Parent(s): 717c28a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,9 +10,9 @@ from smolagents import HfApiModel, CodeAgent
10
  # Login to Hugging Face for access to LLama
11
  login(token = os.getenv('hf_login'))
12
 
 
13
 
14
 
15
- execute_firecrawl = firecrawler.execute_firecrawl
16
  agent = CodeAgent(
17
  tools=[execute_firecrawl], model=HfApiModel("meta-llama/Llama-3.3-70B-Instruct"), max_steps=4
18
  )
 
10
  # Login to Hugging Face for access to LLama
11
  login(token = os.getenv('hf_login'))
12
 
13
+ execute_firecrawl = firecrawler.FireCrawlTool()
14
 
15
 
 
16
  agent = CodeAgent(
17
  tools=[execute_firecrawl], model=HfApiModel("meta-llama/Llama-3.3-70B-Instruct"), max_steps=4
18
  )