Skip to content

Commit 422ba61

Browse files
committed
upgrade pkg
1 parent 9220694 commit 422ba61

File tree

3 files changed

+89
-18
lines changed

3 files changed

+89
-18
lines changed

bot/agents.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
from agentize.agents.summary import get_summary_agent
77
from agentize.model import get_openai_model
8+
from agentize.tools.duckduckgo import duckduckgo_search
89
from agentize.tools.firecrawl import map_tool
9-
from agentize.tools.firecrawl import search_tool
1010
from agentize.tools.markitdown import markitdown_scrape_tool
11-
from agentize.tools.telegragh import publish_page
11+
from agentize.tools.telegraph import publish_page
1212
from agentize.utils import configure_langfuse
1313
from agents import Agent
1414
from agents import Runner
@@ -29,7 +29,7 @@ def __init__(self, name: str, mcp_servers: list | None = None) -> None:
2929
name=name,
3030
instructions="You are a helpful assistant. Handoff to the summary agent when you need to summarize.",
3131
model=get_openai_model(),
32-
tools=[markitdown_scrape_tool, map_tool, search_tool, publish_page],
32+
tools=[markitdown_scrape_tool, map_tool, duckduckgo_search, publish_page],
3333
handoffs=[self.summary_agent],
3434
mcp_servers=(mcp_servers if mcp_servers is not None else []),
3535
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = [
8-
"agentize[langfuse]>=0.0.16",
8+
"agentize[langfuse]>=0.0.17",
99
"mcp>=1.6.0",
1010
"openai-agents>=0.0.13",
1111
"python-dotenv>=1.1.0",

0 commit comments

Comments
 (0)