1df49d1d6f
* stage * refactor: 重构 Function Tool 管理并引入 multi agent handsoff 机制 - Updated `star_request.py` to use the global `call_handler` instead of context-specific calls. - Modified `entities.py` to remove the dependency on `FunctionToolManager` and streamline the function tool handling. - Refactored `func_tool_manager.py` to simplify the `FunctionTool` class and its methods, removing deprecated code and enhancing clarity. - Adjusted `provider.py` to align with the new function tool structure, removing unnecessary type unions. - Enhanced `star_handler.py` to support agent registration and tool association, introducing `RegisteringAgent` for better encapsulation. - Updated `star_manager.py` to handle tool registration for agents, ensuring proper binding of handlers. - Revised `main.py` in the web searcher package to utilize the new agent registration system for web search tools. * chore: websearch * perf: 减少嵌套 * chore: 移除未使用的 mcp 导入
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
from typing import Generic
|
|
from .tool import FunctionTool
|
|
from .agent import Agent
|
|
from .run_context import TContext
|
|
|
|
|
|
class HandoffTool(FunctionTool, Generic[TContext]):
|
|
"""Handoff tool for delegating tasks to another agent."""
|
|
|
|
def __init__(self, agent: Agent[TContext], parameters: dict | None = None):
|
|
self.agent = agent
|
|
super().__init__(
|
|
name=f"transfer_to_{agent.name}",
|
|
parameters=parameters or self.default_parameters(),
|
|
description=agent.instructions or self.default_description(agent.name),
|
|
)
|
|
|
|
def default_parameters(self) -> dict:
|
|
return {
|
|
"type": "object",
|
|
"properties": {
|
|
"input": {
|
|
"type": "string",
|
|
"description": "The input to be handed off to another agent. This should be a clear and concise request or task.",
|
|
},
|
|
},
|
|
}
|
|
|
|
def default_description(self, agent_name: str | None) -> str:
|
|
agent_name = agent_name or "another"
|
|
return f"Delegate tasks to {self.name} agent to handle the request."
|