Code
cookbook/11_models/langdb/web_search.py
from agno.agent import Agent
from agno.models.langdb import LangDB
from agno.tools.hackernews import HackerNewsTools
agent = Agent(
model=LangDB(id="llama3-1-70b-instruct-v1.0"),
tools=[HackerNewsTools()],
markdown=True,
)
agent.print_response("Whats happening in France?", stream=True)
Was this page helpful?