|
Entropic 2.3.8
Local-first agentic inference engine
|
Tool for delegating tasks to child inference loops. More...


Public Member Functions | |
| DelegateTool (ToolDefinition def, const std::vector< std::string > &tier_names) | |
| Construct and patch input schema with tier names. | |
| ServerResponse | execute (const std::string &args_json) override |
| Execute delegation. | |
Public Member Functions inherited from entropic::ToolBase | |
| ToolBase (ToolDefinition def) | |
| Construct with a pre-built definition. | |
| const std::string & | name () const |
| Get the tool name. | |
| const ToolDefinition & | definition () const |
| Get the full tool definition. | |
| virtual std::string | anchor_key (const std::string &args_json) const |
| Generate anchor key for this tool result. | |
| virtual MCPAccessLevel | required_access_level () const |
| Minimum access level required to execute this tool. | |
Additional Inherited Members | |
Protected Attributes inherited from entropic::ToolBase | |
| ToolDefinition | definition_ |
| Tool definition. | |
Tool for delegating tasks to child inference loops.
Definition at line 205 of file entropic_server.cpp.
| entropic::DelegateTool::DelegateTool | ( | ToolDefinition | def, |
| const std::vector< std::string > & | tier_names | ||
| ) |
Construct and patch input schema with tier names.
Construct and patch enum in input schema.
| def | Tool definition loaded from entropic/delegate.json. |
| tier_names | Available tier names for enum patching. |
| def | Tool definition. |
| tier_names | Tier names for target enum. |
Definition at line 234 of file entropic_server.cpp.
|
overridevirtual |
Execute delegation.
Parse delegation args and emit directives.
| args_json | JSON with "target", "task", "max_turns". |
| args_json | JSON with "target", "task", optional "max_turns". |
Implements entropic::ToolBase.
Definition at line 254 of file entropic_server.cpp.