Skip to content

Commit ebaae86

Browse files
author
yashksaini-coder
committed
Update model
1 parent 589e316 commit ebaae86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

controllers/agents.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
web_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

@@ -35,7 +35,7 @@
3535
financial_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,
@@ -59,6 +59,6 @@
5959

6060
multi_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
)

0 commit comments

Comments
 (0)