Skip to content

Commit 3371c7e

Browse files
committed
revert deleted file
1 parent 81db778 commit 3371c7e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
"""Run `pip install duckduckgo-search` to install dependencies."""
2+
3+
from agno.agent import Agent
4+
from agno.models.openai import OpenAIChat
5+
from agno.tools.duckduckgo import DuckDuckGoTools
6+
7+
agent = Agent(
8+
model=OpenAIChat(id="gpt-4o"),
9+
tools=[DuckDuckGoTools()],
10+
show_tool_calls=True,
11+
markdown=True,
12+
)
13+
agent.print_response("Whats happening in France?", stream=True)

0 commit comments

Comments
 (0)