File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1919web_search_agent = Agent (
2020 name = "web_agent" ,
2121 role = "search the web for information based on the user given input" ,
22- model = Groq (id = "llama-3.3-70b-specdec " ,api_key = GROQ_API_KEY ),
22+ model = Groq (id = "deepseek-r1-distill-llama-70b " ,api_key = GROQ_API_KEY ),
2323 tools = [
2424 DuckDuckGoTools (search = True , news = True ),
2525
3535financial_agent = Agent (
3636 name = "financial_agent" ,
3737 role = "get financial information" ,
38- model = Groq (id = "llama-3.3-70b-specdec " ,api_key = GROQ_API_KEY ),
38+ model = Groq (id = "deepseek-r1-distill-llama-70b " ,api_key = GROQ_API_KEY ),
3939 tools = [
4040 YFinanceTools (stock_price = True ,
4141 analyst_recommendations = True ,
5959
6060multi_ai = Agent (
6161 team = [web_search_agent , financial_agent ],
62- model = Groq (id = "llama-3.3-70b-specdec " ,api_key = GROQ_API_KEY ),
62+ model = Groq (id = "deepseek-r1-distill-llama-70b " ,api_key = GROQ_API_KEY ),
6363 markdown = True ,
6464)
You can’t perform that action at this time.
0 commit comments