Skip to content

Commit

Permalink
v2.3.82
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpreetbedi committed Apr 24, 2024
1 parent 96a1a99 commit 085c86e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cookbook/llms/ollama/tools/assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ def get_local_assistant(
if tavily_search:
tools.append(TavilyTools())
if yfinance:
tools.append(YFinanceTools(stock_price=True, stock_fundamentals=True, analyst_recommendations=True))
tools.append(
YFinanceTools(stock_price=True, stock_fundamentals=True, analyst_recommendations=True, company_news=True)
)

assistant = Assistant(
name="local_assistant",
Expand Down

0 comments on commit 085c86e

Please sign in to comment.