Skip to content

Commit 1be14b6

Browse files
jackgerritsekzhu
authored andcommitted
Migrate remaining components (#4626)
1 parent 08fd9e9 commit 1be14b6

File tree

44 files changed

+262
-83
lines changed

Some content is hidden

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

44 files changed

+262
-83
lines changed

python/packages/autogen-agentchat/src/autogen_agentchat/agents/_assistant_agent.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from typing import Any, AsyncGenerator, Awaitable, Callable, Dict, List, Mapping, Sequence
66

77
from autogen_core import CancellationToken, FunctionCall
8-
from autogen_core.components.tools import FunctionTool, Tool
98
from autogen_core.models import (
109
AssistantMessage,
1110
ChatCompletionClient,
@@ -15,6 +14,7 @@
1514
SystemMessage,
1615
UserMessage,
1716
)
17+
from autogen_core.tools import FunctionTool, Tool
1818
from typing_extensions import deprecated
1919

2020
from .. import EVENT_LOGGER_NAME

python/packages/autogen-agentchat/src/autogen_agentchat/agents/_tool_use_assistant_agent.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
import warnings
33
from typing import Any, Awaitable, Callable, List
44

5-
from autogen_core.components.tools import Tool
65
from autogen_core.models import (
76
ChatCompletionClient,
87
)
8+
from autogen_core.tools import Tool
99

1010
from .. import EVENT_LOGGER_NAME
1111
from ._assistant_agent import AssistantAgent

python/packages/autogen-agentchat/src/autogen_agentchat/base/_handoff.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22
from typing import Any, Dict
33

4-
from autogen_core.components.tools import FunctionTool, Tool
4+
from autogen_core.tools import FunctionTool, Tool
55
from pydantic import BaseModel, Field, model_validator
66

77
from .. import EVENT_LOGGER_NAME

python/packages/autogen-agentchat/tests/test_assistant_agent.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
ToolCallResultMessage,
1616
)
1717
from autogen_core import Image
18-
from autogen_core.components.tools import FunctionTool
18+
from autogen_core.tools import FunctionTool
1919
from autogen_ext.models import OpenAIChatCompletionClient
2020
from openai.resources.chat.completions import AsyncCompletions
2121
from openai.types.chat.chat_completion import ChatCompletion, Choice

python/packages/autogen-agentchat/tests/test_group_chat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
from autogen_agentchat.teams._group_chat._swarm_group_chat import SwarmGroupChatManager
3434
from autogen_agentchat.ui import Console
3535
from autogen_core import AgentId, CancellationToken, FunctionCall
36-
from autogen_core.components.tools import FunctionTool
3736
from autogen_core.models import FunctionExecutionResult
37+
from autogen_core.tools import FunctionTool
3838
from autogen_ext.code_executors.local import LocalCommandLineCodeExecutor
3939
from autogen_ext.models import OpenAIChatCompletionClient, ReplayChatCompletionClient
4040
from openai.resources.chat.completions import AsyncCompletions

python/packages/autogen-core/docs/src/reference/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ python/autogen_core
2929
python/autogen_core.code_executor
3030
python/autogen_core.models
3131
python/autogen_core.model_context
32-
python/autogen_core.components.tools
33-
python/autogen_core.components.tool_agent
32+
python/autogen_core.tools
33+
python/autogen_core.tool_agent
3434
python/autogen_core.exceptions
3535
python/autogen_core.logging
3636
```
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
autogen\_core.components.tool\_agent
1+
autogen\_core.tool\_agent
22
====================================
33

44

5-
.. automodule:: autogen_core.components.tool_agent
5+
.. automodule:: autogen_core.tool_agent
66
:members:
77
:undoc-members:
88
:show-inheritance:
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
autogen\_core.components.tools
1+
autogen\_core.tools
22
==============================
33

44

5-
.. automodule:: autogen_core.components.tools
5+
.. automodule:: autogen_core.tools
66
:members:
77
:undoc-members:
88
:show-inheritance:

python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/examples/company-research.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"from autogen_agentchat.agents import CodingAssistantAgent, ToolUseAssistantAgent\n",
2626
"from autogen_agentchat.conditions import TextMentionTermination\n",
2727
"from autogen_agentchat.teams import RoundRobinGroupChat\n",
28-
"from autogen_core.components.tools import FunctionTool\n",
28+
"from autogen_core.tools import FunctionTool\n",
2929
"from autogen_ext.models import OpenAIChatCompletionClient"
3030
]
3131
},

python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/examples/literature-review.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"from autogen_agentchat.agents import CodingAssistantAgent, ToolUseAssistantAgent\n",
2626
"from autogen_agentchat.conditions import TextMentionTermination\n",
2727
"from autogen_agentchat.teams import RoundRobinGroupChat\n",
28-
"from autogen_core.components.tools import FunctionTool\n",
28+
"from autogen_core.tools import FunctionTool\n",
2929
"from autogen_ext.models import OpenAIChatCompletionClient"
3030
]
3131
},

python/packages/autogen-core/docs/src/user-guide/core-user-guide/cookbook/tool-use-with-intervention.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@
2929
" message_handler,\n",
3030
")\n",
3131
"from autogen_core.base.intervention import DefaultInterventionHandler, DropMessage\n",
32-
"from autogen_core.components.tools import PythonCodeExecutionTool, ToolSchema\n",
3332
"from autogen_core.models import (\n",
3433
" ChatCompletionClient,\n",
3534
" LLMMessage,\n",
3635
" SystemMessage,\n",
3736
" UserMessage,\n",
3837
")\n",
3938
"from autogen_core.tool_agent import ToolAgent, ToolException, tool_agent_caller_loop\n",
39+
"from autogen_core.tools import PythonCodeExecutionTool, ToolSchema\n",
4040
"from autogen_ext.code_executors.docker import DockerCommandLineCodeExecutor\n",
4141
"from autogen_ext.models import OpenAIChatCompletionClient"
4242
]
@@ -64,7 +64,7 @@
6464
"metadata": {},
6565
"source": [
6666
"Let's create a simple tool use agent that is capable of using tools through a\n",
67-
"{py:class}`~autogen_core.components.tool_agent.ToolAgent`."
67+
"{py:class}`~autogen_core.tool_agent.ToolAgent`."
6868
]
6969
},
7070
{
@@ -165,7 +165,7 @@
165165
"First, we create a Docker-based command-line code executor\n",
166166
"using {py:class}`~autogen_ext.code_executors.docker.DockerCommandLineCodeExecutor`,\n",
167167
"and then use it to instantiate a built-in Python code execution tool\n",
168-
"{py:class}`~autogen_core.components.tools.PythonCodeExecutionTool`\n",
168+
"{py:class}`~autogen_core.tools.PythonCodeExecutionTool`\n",
169169
"that runs code in a Docker container."
170170
]
171171
},

python/packages/autogen-core/docs/src/user-guide/core-user-guide/design-patterns/group-chat.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@
8383
" TypeSubscription,\n",
8484
" message_handler,\n",
8585
")\n",
86-
"from autogen_core.components.tools import FunctionTool\n",
8786
"from autogen_core.models import (\n",
8887
" AssistantMessage,\n",
8988
" ChatCompletionClient,\n",
9089
" LLMMessage,\n",
9190
" SystemMessage,\n",
9291
" UserMessage,\n",
9392
")\n",
93+
"from autogen_core.tools import FunctionTool\n",
9494
"from autogen_ext.models import OpenAIChatCompletionClient\n",
9595
"from IPython.display import display # type: ignore\n",
9696
"from pydantic import BaseModel\n",
@@ -233,7 +233,7 @@
233233
"\n",
234234
"Now let's define the `IllustratorAgent` which uses a DALL-E model to generate\n",
235235
"an illustration based on the description provided.\n",
236-
"We set up the image generator as a tool using {py:class}`~autogen_core.components.tools.FunctionTool`\n",
236+
"We set up the image generator as a tool using {py:class}`~autogen_core.tools.FunctionTool`\n",
237237
"wrapper, and use a model client to make the tool call."
238238
]
239239
},

python/packages/autogen-core/docs/src/user-guide/core-user-guide/design-patterns/handoffs.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
" TypeSubscription,\n",
6666
" message_handler,\n",
6767
")\n",
68-
"from autogen_core.components.tools import FunctionTool, Tool\n",
6968
"from autogen_core.models import (\n",
7069
" AssistantMessage,\n",
7170
" ChatCompletionClient,\n",
@@ -75,6 +74,7 @@
7574
" SystemMessage,\n",
7675
" UserMessage,\n",
7776
")\n",
77+
"from autogen_core.tools import FunctionTool, Tool\n",
7878
"from autogen_ext.models import OpenAIChatCompletionClient\n",
7979
"from pydantic import BaseModel"
8080
]
@@ -339,7 +339,7 @@
339339
"\n",
340340
"The AI agents can use regular tools to complete tasks if they don't need to hand off the task to other agents.\n",
341341
"We define the tools using simple functions and create the tools using the\n",
342-
"{py:class}`~autogen_core.components.tools.FunctionTool` wrapper."
342+
"{py:class}`~autogen_core.tools.FunctionTool` wrapper."
343343
]
344344
},
345345
{

python/packages/autogen-core/docs/src/user-guide/core-user-guide/framework/message-and-communication.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@
368368
"recipient are tightly coupled -- they are created together and the sender\n",
369369
"is linked to a specific instance of the recipient.\n",
370370
"For example, an agent executes tool calls by sending direct messages to\n",
371-
"an instance of {py:class}`~autogen_core.components.tool_agent.ToolAgent`,\n",
371+
"an instance of {py:class}`~autogen_core.tool_agent.ToolAgent`,\n",
372372
"and uses the responses to form an action-observation loop."
373373
]
374374
},

python/packages/autogen-core/docs/src/user-guide/core-user-guide/framework/tools.ipynb

+12-12
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"In the context of AI agents, tools are designed to be executed by agents in\n",
1313
"response to model-generated function calls.\n",
1414
"\n",
15-
"AutoGen provides the {py:mod}`autogen_core.components.tools` module with a suite of built-in\n",
15+
"AutoGen provides the {py:mod}`autogen_core.tools` module with a suite of built-in\n",
1616
"tools and utilities for creating and running custom tools."
1717
]
1818
},
@@ -22,7 +22,7 @@
2222
"source": [
2323
"## Built-in Tools\n",
2424
"\n",
25-
"One of the built-in tools is the {py:class}`~autogen_core.components.tools.PythonCodeExecutionTool`,\n",
25+
"One of the built-in tools is the {py:class}`~autogen_core.tools.PythonCodeExecutionTool`,\n",
2626
"which allows agents to execute Python code snippets.\n",
2727
"\n",
2828
"Here is how you create the tool and use it."
@@ -44,7 +44,7 @@
4444
],
4545
"source": [
4646
"from autogen_core import CancellationToken\n",
47-
"from autogen_core.components.tools import PythonCodeExecutionTool\n",
47+
"from autogen_core.tools import PythonCodeExecutionTool\n",
4848
"from autogen_ext.code_executors.docker import DockerCommandLineCodeExecutor\n",
4949
"\n",
5050
"# Create the tool.\n",
@@ -73,7 +73,7 @@
7373
"The {py:class}`~autogen_ext.code_executors.docker.DockerCommandLineCodeExecutor`\n",
7474
"class is a built-in code executor that runs Python code snippets in a subprocess\n",
7575
"in the command line environment of a docker container.\n",
76-
"The {py:class}`~autogen_core.components.tools.PythonCodeExecutionTool` class wraps the code executor\n",
76+
"The {py:class}`~autogen_core.tools.PythonCodeExecutionTool` class wraps the code executor\n",
7777
"and provides a simple interface to execute Python code snippets.\n",
7878
"\n",
7979
"Other built-in tools will be added in the future."
@@ -87,9 +87,9 @@
8787
"\n",
8888
"A tool can also be a simple Python function that performs a specific action.\n",
8989
"To create a custom function tool, you just need to create a Python function\n",
90-
"and use the {py:class}`~autogen_core.components.tools.FunctionTool` class to wrap it.\n",
90+
"and use the {py:class}`~autogen_core.tools.FunctionTool` class to wrap it.\n",
9191
"\n",
92-
"The {py:class}`~autogen_core.components.tools.FunctionTool` class uses descriptions and type annotations\n",
92+
"The {py:class}`~autogen_core.tools.FunctionTool` class uses descriptions and type annotations\n",
9393
"to inform the LLM when and how to use a given function. The description provides context\n",
9494
"about the function’s purpose and intended use cases, while type annotations inform the LLM about\n",
9595
"the expected parameters and return type.\n",
@@ -114,7 +114,7 @@
114114
"import random\n",
115115
"\n",
116116
"from autogen_core import CancellationToken\n",
117-
"from autogen_core.components.tools import FunctionTool\n",
117+
"from autogen_core.tools import FunctionTool\n",
118118
"from typing_extensions import Annotated\n",
119119
"\n",
120120
"\n",
@@ -140,9 +140,9 @@
140140
"source": [
141141
"## Tool-Equipped Agent\n",
142142
"\n",
143-
"To use tools with an agent, you can use {py:class}`~autogen_core.components.tool_agent.ToolAgent`,\n",
143+
"To use tools with an agent, you can use {py:class}`~autogen_core.tool_agent.ToolAgent`,\n",
144144
"by using it in a composition pattern.\n",
145-
"Here is an example tool-use agent that uses {py:class}`~autogen_core.components.tool_agent.ToolAgent`\n",
145+
"Here is an example tool-use agent that uses {py:class}`~autogen_core.tool_agent.ToolAgent`\n",
146146
"as an inner agent for executing tools."
147147
]
148148
},
@@ -163,14 +163,14 @@
163163
" SingleThreadedAgentRuntime,\n",
164164
" message_handler,\n",
165165
")\n",
166-
"from autogen_core.components.tools import FunctionTool, Tool, ToolSchema\n",
167166
"from autogen_core.models import (\n",
168167
" ChatCompletionClient,\n",
169168
" LLMMessage,\n",
170169
" SystemMessage,\n",
171170
" UserMessage,\n",
172171
")\n",
173172
"from autogen_core.tool_agent import ToolAgent, tool_agent_caller_loop\n",
173+
"from autogen_core.tools import FunctionTool, Tool, ToolSchema\n",
174174
"from autogen_ext.models import OpenAIChatCompletionClient\n",
175175
"\n",
176176
"\n",
@@ -209,7 +209,7 @@
209209
"cell_type": "markdown",
210210
"metadata": {},
211211
"source": [
212-
"The `ToolUseAgent` class uses a convenience function {py:meth}`~autogen_core.components.tool_agent.tool_agent_caller_loop`, \n",
212+
"The `ToolUseAgent` class uses a convenience function {py:meth}`~autogen_core.tool_agent.tool_agent_caller_loop`, \n",
213213
"to handle the interaction between the model and the tool agent.\n",
214214
"The core idea can be described using a simple control flow graph:\n",
215215
"\n",
@@ -218,7 +218,7 @@
218218
"The `ToolUseAgent`'s `handle_user_message` handler handles messages from the user,\n",
219219
"and determines whether the model has generated a tool call.\n",
220220
"If the model has generated tool calls, then the handler sends a function call\n",
221-
"message to the {py:class}`~autogen_core.components.tool_agent.ToolAgent` agent\n",
221+
"message to the {py:class}`~autogen_core.tool_agent.ToolAgent` agent\n",
222222
"to execute the tools,\n",
223223
"and then queries the model again with the results of the tool calls.\n",
224224
"This process continues until the model stops generating tool calls,\n",

python/packages/autogen-core/samples/chess_game.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
DefaultTopicId,
1616
SingleThreadedAgentRuntime,
1717
)
18-
from autogen_core.components.tools import FunctionTool
1918
from autogen_core.model_context import BufferedChatCompletionContext
2019
from autogen_core.models import SystemMessage
20+
from autogen_core.tools import FunctionTool
2121
from chess import BLACK, SQUARE_NAMES, WHITE, Board, Move
2222
from chess import piece_name as get_piece_name
2323
from common.agents._chat_completion_agent import ChatCompletionAgent

python/packages/autogen-core/samples/common/agents/_chat_completion_agent.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
RoutedAgent,
1212
message_handler,
1313
)
14-
from autogen_core.components.tools import Tool
1514
from autogen_core.model_context import ChatCompletionContext
1615
from autogen_core.models import (
1716
AssistantMessage,
@@ -21,6 +20,7 @@
2120
SystemMessage,
2221
UserMessage,
2322
)
23+
from autogen_core.tools import Tool
2424

2525
from ..types import (
2626
FunctionCallMessage,

python/packages/autogen-core/samples/slow_human_in_loop.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@
4242
type_subscription,
4343
)
4444
from autogen_core.base.intervention import DefaultInterventionHandler
45-
from autogen_core.components.tools import BaseTool
4645
from autogen_core.model_context import BufferedChatCompletionContext
4746
from autogen_core.models import (
4847
AssistantMessage,
4948
ChatCompletionClient,
5049
SystemMessage,
5150
UserMessage,
5251
)
52+
from autogen_core.tools import BaseTool
5353
from common.types import TextMessage
5454
from common.utils import get_chat_completion_client_from_envs
5555
from pydantic import BaseModel, Field

0 commit comments

Comments
 (0)