Skip to content

Commit 1349c69

Browse files
update
1 parent d6804f6 commit 1349c69

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+152
-225
lines changed

cookbook/agents/human_in_the_loop/agentic_user_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
from agno.agent import Agent
1010
from agno.models.openai import OpenAIChat
11+
from agno.tools import Toolkit
1112
from agno.tools.function import UserInputField
12-
from agno.tools.toolkit import Toolkit
1313
from agno.tools.user_control_flow import UserControlFlowTools
1414
from agno.utils import pprint
1515

cookbook/agents/other/agent_metrics.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
from typing import Iterator
22

3-
from agno.agent import Agent, RunOutputEvent
3+
from agno.agent import Agent
44
from agno.db.postgres import PostgresDb
55
from agno.models.openai import OpenAIChat
66
from agno.tools.yfinance import YFinanceTools
7-
from agno.utils.pprint import pprint_run_response
8-
from rich.pretty import pprint
7+
from agno.utils import pprint
98

109
agent = Agent(
1110
model=OpenAIChat(id="gpt-4o"),

cookbook/agents/tool_concepts/custom_tools/include_exclude_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from agno.agent import Agent
55
from agno.models.openai import OpenAIChat
6-
from agno.tools.toolkit import Toolkit
6+
from agno.tools import Toolkit
77
from agno.utils.log import logger
88

99

cookbook/agents/tool_concepts/custom_tools/tool_hook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Any, Callable, Dict
55

66
from agno.agent import Agent
7-
from agno.tools.toolkit import Toolkit
7+
from agno.tools import Toolkit
88
from agno.utils.log import logger
99

1010

cookbook/agents/tool_concepts/custom_tools/tool_hook_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from typing import Any, Callable, Dict
77

88
from agno.agent import Agent
9-
from agno.tools.toolkit import Toolkit
9+
from agno.tools import Toolkit
1010
from agno.utils.log import logger
1111

1212

cookbook/agents/tool_concepts/custom_tools/tool_hook_with_state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Any, Callable, Dict
55

66
from agno.agent import Agent
7-
from agno.tools.toolkit import Toolkit
7+
from agno.tools import Toolkit
88

99

1010
class CustomerDBTools(Toolkit):

cookbook/agents/tool_concepts/custom_tools/tool_hook_with_state_nested.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Any, Callable, Dict
55

66
from agno.agent import Agent
7-
from agno.tools.toolkit import Toolkit
7+
from agno.tools import Toolkit
88
from agno.utils.log import logger
99

1010

cookbook/agents/tool_concepts/custom_tools/tool_hooks_nested.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Any, Callable, Dict
55

66
from agno.agent import Agent
7-
from agno.tools.toolkit import Toolkit
7+
from agno.tools import Toolkit
88
from agno.utils.log import logger
99

1010

cookbook/agents/tool_concepts/custom_tools/tool_hooks_nested_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from typing import Any, Callable, Dict
77

88
from agno.agent import Agent
9-
from agno.tools.toolkit import Toolkit
9+
from agno.tools import Toolkit
1010
from agno.utils.log import logger
1111

1212

cookbook/demo/os.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Setup basic agents, teams and workflows
1717
basic_agent = Agent(
1818
name="Basic Agent",
19-
agent_id="basic-agent",
19+
id="basic-agent",
2020
db=db,
2121
enable_session_summaries=True,
2222
enable_user_memories=True,

0 commit comments

Comments
 (0)