agentpool 2.1.9__py3-none-any.whl → 2.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- acp/__init__.py +13 -4
- acp/acp_requests.py +20 -77
- acp/agent/connection.py +8 -0
- acp/agent/implementations/debug_server/debug_server.py +6 -2
- acp/agent/protocol.py +6 -0
- acp/bridge/README.md +15 -2
- acp/bridge/__init__.py +3 -2
- acp/bridge/__main__.py +60 -19
- acp/bridge/ws_server.py +173 -0
- acp/bridge/ws_server_cli.py +89 -0
- acp/client/connection.py +38 -29
- acp/client/implementations/default_client.py +3 -2
- acp/client/implementations/headless_client.py +2 -2
- acp/connection.py +2 -2
- acp/notifications.py +20 -50
- acp/schema/__init__.py +2 -0
- acp/schema/agent_responses.py +21 -0
- acp/schema/client_requests.py +3 -3
- acp/schema/session_state.py +63 -29
- acp/stdio.py +39 -9
- acp/task/supervisor.py +2 -2
- acp/transports.py +362 -2
- acp/utils.py +17 -4
- agentpool/__init__.py +6 -1
- agentpool/agents/__init__.py +2 -0
- agentpool/agents/acp_agent/acp_agent.py +407 -277
- agentpool/agents/acp_agent/acp_converters.py +196 -38
- agentpool/agents/acp_agent/client_handler.py +191 -26
- agentpool/agents/acp_agent/session_state.py +17 -6
- agentpool/agents/agent.py +607 -572
- agentpool/agents/agui_agent/__init__.py +0 -2
- agentpool/agents/agui_agent/agui_agent.py +176 -110
- agentpool/agents/agui_agent/agui_converters.py +0 -131
- agentpool/agents/agui_agent/helpers.py +3 -4
- agentpool/agents/base_agent.py +632 -17
- agentpool/agents/claude_code_agent/FORKING.md +191 -0
- agentpool/agents/claude_code_agent/__init__.py +13 -1
- agentpool/agents/claude_code_agent/claude_code_agent.py +1058 -291
- agentpool/agents/claude_code_agent/converters.py +74 -143
- agentpool/agents/claude_code_agent/history.py +474 -0
- agentpool/agents/claude_code_agent/models.py +77 -0
- agentpool/agents/claude_code_agent/static_info.py +100 -0
- agentpool/agents/claude_code_agent/usage.py +242 -0
- agentpool/agents/context.py +40 -0
- agentpool/agents/events/__init__.py +24 -0
- agentpool/agents/events/builtin_handlers.py +67 -1
- agentpool/agents/events/event_emitter.py +32 -2
- agentpool/agents/events/events.py +104 -3
- agentpool/agents/events/infer_info.py +145 -0
- agentpool/agents/events/processors.py +254 -0
- agentpool/agents/interactions.py +41 -6
- agentpool/agents/modes.py +67 -0
- agentpool/agents/slashed_agent.py +5 -4
- agentpool/agents/tool_call_accumulator.py +213 -0
- agentpool/agents/tool_wrapping.py +18 -6
- agentpool/common_types.py +56 -21
- agentpool/config_resources/__init__.py +38 -1
- agentpool/config_resources/acp_assistant.yml +2 -2
- agentpool/config_resources/agents.yml +3 -0
- agentpool/config_resources/agents_template.yml +1 -0
- agentpool/config_resources/claude_code_agent.yml +10 -6
- agentpool/config_resources/external_acp_agents.yml +2 -1
- agentpool/delegation/base_team.py +4 -30
- agentpool/delegation/pool.py +136 -289
- agentpool/delegation/team.py +58 -57
- agentpool/delegation/teamrun.py +51 -55
- agentpool/diagnostics/__init__.py +53 -0
- agentpool/diagnostics/lsp_manager.py +1593 -0
- agentpool/diagnostics/lsp_proxy.py +41 -0
- agentpool/diagnostics/lsp_proxy_script.py +229 -0
- agentpool/diagnostics/models.py +398 -0
- agentpool/functional/run.py +10 -4
- agentpool/mcp_server/__init__.py +0 -2
- agentpool/mcp_server/client.py +76 -32
- agentpool/mcp_server/conversions.py +54 -13
- agentpool/mcp_server/manager.py +34 -54
- agentpool/mcp_server/registries/official_registry_client.py +35 -1
- agentpool/mcp_server/tool_bridge.py +186 -139
- agentpool/messaging/__init__.py +0 -2
- agentpool/messaging/compaction.py +72 -197
- agentpool/messaging/connection_manager.py +11 -10
- agentpool/messaging/event_manager.py +5 -5
- agentpool/messaging/message_container.py +6 -30
- agentpool/messaging/message_history.py +99 -8
- agentpool/messaging/messagenode.py +52 -14
- agentpool/messaging/messages.py +54 -35
- agentpool/messaging/processing.py +12 -22
- agentpool/models/__init__.py +1 -1
- agentpool/models/acp_agents/base.py +6 -24
- agentpool/models/acp_agents/mcp_capable.py +126 -157
- agentpool/models/acp_agents/non_mcp.py +129 -95
- agentpool/models/agents.py +98 -76
- agentpool/models/agui_agents.py +1 -1
- agentpool/models/claude_code_agents.py +144 -19
- agentpool/models/file_parsing.py +0 -1
- agentpool/models/manifest.py +113 -50
- agentpool/prompts/conversion_manager.py +1 -1
- agentpool/prompts/prompts.py +5 -2
- agentpool/repomap.py +1 -1
- agentpool/resource_providers/__init__.py +11 -1
- agentpool/resource_providers/aggregating.py +56 -5
- agentpool/resource_providers/base.py +70 -4
- agentpool/resource_providers/codemode/code_executor.py +72 -5
- agentpool/resource_providers/codemode/helpers.py +2 -2
- agentpool/resource_providers/codemode/provider.py +64 -12
- agentpool/resource_providers/codemode/remote_mcp_execution.py +2 -2
- agentpool/resource_providers/codemode/remote_provider.py +9 -12
- agentpool/resource_providers/filtering.py +3 -1
- agentpool/resource_providers/mcp_provider.py +89 -12
- agentpool/resource_providers/plan_provider.py +228 -46
- agentpool/resource_providers/pool.py +7 -3
- agentpool/resource_providers/resource_info.py +111 -0
- agentpool/resource_providers/static.py +4 -2
- agentpool/sessions/__init__.py +4 -1
- agentpool/sessions/manager.py +33 -5
- agentpool/sessions/models.py +59 -6
- agentpool/sessions/protocol.py +28 -0
- agentpool/sessions/session.py +11 -55
- agentpool/skills/registry.py +13 -8
- agentpool/storage/manager.py +572 -49
- agentpool/talk/registry.py +4 -4
- agentpool/talk/talk.py +9 -10
- agentpool/testing.py +538 -20
- agentpool/tool_impls/__init__.py +6 -0
- agentpool/tool_impls/agent_cli/__init__.py +42 -0
- agentpool/tool_impls/agent_cli/tool.py +95 -0
- agentpool/tool_impls/bash/__init__.py +64 -0
- agentpool/tool_impls/bash/helpers.py +35 -0
- agentpool/tool_impls/bash/tool.py +171 -0
- agentpool/tool_impls/delete_path/__init__.py +70 -0
- agentpool/tool_impls/delete_path/tool.py +142 -0
- agentpool/tool_impls/download_file/__init__.py +80 -0
- agentpool/tool_impls/download_file/tool.py +183 -0
- agentpool/tool_impls/execute_code/__init__.py +55 -0
- agentpool/tool_impls/execute_code/tool.py +163 -0
- agentpool/tool_impls/grep/__init__.py +80 -0
- agentpool/tool_impls/grep/tool.py +200 -0
- agentpool/tool_impls/list_directory/__init__.py +73 -0
- agentpool/tool_impls/list_directory/tool.py +197 -0
- agentpool/tool_impls/question/__init__.py +42 -0
- agentpool/tool_impls/question/tool.py +127 -0
- agentpool/tool_impls/read/__init__.py +104 -0
- agentpool/tool_impls/read/tool.py +305 -0
- agentpool/tools/__init__.py +2 -1
- agentpool/tools/base.py +114 -34
- agentpool/tools/manager.py +57 -1
- agentpool/ui/base.py +2 -2
- agentpool/ui/mock_provider.py +2 -2
- agentpool/ui/stdlib_provider.py +2 -2
- agentpool/utils/file_watcher.py +269 -0
- agentpool/utils/identifiers.py +121 -0
- agentpool/utils/pydantic_ai_helpers.py +46 -0
- agentpool/utils/streams.py +616 -2
- agentpool/utils/subprocess_utils.py +155 -0
- agentpool/utils/token_breakdown.py +461 -0
- agentpool/vfs_registry.py +7 -2
- {agentpool-2.1.9.dist-info → agentpool-2.5.0.dist-info}/METADATA +41 -27
- agentpool-2.5.0.dist-info/RECORD +579 -0
- {agentpool-2.1.9.dist-info → agentpool-2.5.0.dist-info}/WHEEL +1 -1
- agentpool_cli/__main__.py +24 -0
- agentpool_cli/create.py +1 -1
- agentpool_cli/serve_acp.py +100 -21
- agentpool_cli/serve_agui.py +87 -0
- agentpool_cli/serve_opencode.py +119 -0
- agentpool_cli/ui.py +557 -0
- agentpool_commands/__init__.py +42 -5
- agentpool_commands/agents.py +75 -2
- agentpool_commands/history.py +62 -0
- agentpool_commands/mcp.py +176 -0
- agentpool_commands/models.py +56 -3
- agentpool_commands/pool.py +260 -0
- agentpool_commands/session.py +1 -1
- agentpool_commands/text_sharing/__init__.py +119 -0
- agentpool_commands/text_sharing/base.py +123 -0
- agentpool_commands/text_sharing/github_gist.py +80 -0
- agentpool_commands/text_sharing/opencode.py +462 -0
- agentpool_commands/text_sharing/paste_rs.py +59 -0
- agentpool_commands/text_sharing/pastebin.py +116 -0
- agentpool_commands/text_sharing/shittycodingagent.py +112 -0
- agentpool_commands/tools.py +57 -0
- agentpool_commands/utils.py +80 -30
- agentpool_config/__init__.py +30 -2
- agentpool_config/agentpool_tools.py +498 -0
- agentpool_config/builtin_tools.py +77 -22
- agentpool_config/commands.py +24 -1
- agentpool_config/compaction.py +258 -0
- agentpool_config/converters.py +1 -1
- agentpool_config/event_handlers.py +42 -0
- agentpool_config/events.py +1 -1
- agentpool_config/forward_targets.py +1 -4
- agentpool_config/jinja.py +3 -3
- agentpool_config/mcp_server.py +132 -6
- agentpool_config/nodes.py +1 -1
- agentpool_config/observability.py +44 -0
- agentpool_config/session.py +0 -3
- agentpool_config/storage.py +82 -38
- agentpool_config/task.py +3 -3
- agentpool_config/tools.py +11 -22
- agentpool_config/toolsets.py +109 -233
- agentpool_server/a2a_server/agent_worker.py +307 -0
- agentpool_server/a2a_server/server.py +23 -18
- agentpool_server/acp_server/acp_agent.py +234 -181
- agentpool_server/acp_server/commands/acp_commands.py +151 -156
- agentpool_server/acp_server/commands/docs_commands/fetch_repo.py +18 -17
- agentpool_server/acp_server/event_converter.py +651 -0
- agentpool_server/acp_server/input_provider.py +53 -10
- agentpool_server/acp_server/server.py +24 -90
- agentpool_server/acp_server/session.py +173 -331
- agentpool_server/acp_server/session_manager.py +8 -34
- agentpool_server/agui_server/server.py +3 -1
- agentpool_server/mcp_server/server.py +5 -2
- agentpool_server/opencode_server/.rules +95 -0
- agentpool_server/opencode_server/ENDPOINTS.md +401 -0
- agentpool_server/opencode_server/OPENCODE_UI_TOOLS_COMPLETE.md +202 -0
- agentpool_server/opencode_server/__init__.py +19 -0
- agentpool_server/opencode_server/command_validation.py +172 -0
- agentpool_server/opencode_server/converters.py +975 -0
- agentpool_server/opencode_server/dependencies.py +24 -0
- agentpool_server/opencode_server/input_provider.py +421 -0
- agentpool_server/opencode_server/models/__init__.py +250 -0
- agentpool_server/opencode_server/models/agent.py +53 -0
- agentpool_server/opencode_server/models/app.py +72 -0
- agentpool_server/opencode_server/models/base.py +26 -0
- agentpool_server/opencode_server/models/common.py +23 -0
- agentpool_server/opencode_server/models/config.py +37 -0
- agentpool_server/opencode_server/models/events.py +821 -0
- agentpool_server/opencode_server/models/file.py +88 -0
- agentpool_server/opencode_server/models/mcp.py +44 -0
- agentpool_server/opencode_server/models/message.py +179 -0
- agentpool_server/opencode_server/models/parts.py +323 -0
- agentpool_server/opencode_server/models/provider.py +81 -0
- agentpool_server/opencode_server/models/pty.py +43 -0
- agentpool_server/opencode_server/models/question.py +56 -0
- agentpool_server/opencode_server/models/session.py +111 -0
- agentpool_server/opencode_server/routes/__init__.py +29 -0
- agentpool_server/opencode_server/routes/agent_routes.py +473 -0
- agentpool_server/opencode_server/routes/app_routes.py +202 -0
- agentpool_server/opencode_server/routes/config_routes.py +302 -0
- agentpool_server/opencode_server/routes/file_routes.py +571 -0
- agentpool_server/opencode_server/routes/global_routes.py +94 -0
- agentpool_server/opencode_server/routes/lsp_routes.py +319 -0
- agentpool_server/opencode_server/routes/message_routes.py +761 -0
- agentpool_server/opencode_server/routes/permission_routes.py +63 -0
- agentpool_server/opencode_server/routes/pty_routes.py +300 -0
- agentpool_server/opencode_server/routes/question_routes.py +128 -0
- agentpool_server/opencode_server/routes/session_routes.py +1276 -0
- agentpool_server/opencode_server/routes/tui_routes.py +139 -0
- agentpool_server/opencode_server/server.py +475 -0
- agentpool_server/opencode_server/state.py +151 -0
- agentpool_server/opencode_server/time_utils.py +8 -0
- agentpool_storage/__init__.py +12 -0
- agentpool_storage/base.py +184 -2
- agentpool_storage/claude_provider/ARCHITECTURE.md +433 -0
- agentpool_storage/claude_provider/__init__.py +42 -0
- agentpool_storage/claude_provider/provider.py +1089 -0
- agentpool_storage/file_provider.py +278 -15
- agentpool_storage/memory_provider.py +193 -12
- agentpool_storage/models.py +3 -0
- agentpool_storage/opencode_provider/ARCHITECTURE.md +386 -0
- agentpool_storage/opencode_provider/__init__.py +16 -0
- agentpool_storage/opencode_provider/helpers.py +414 -0
- agentpool_storage/opencode_provider/provider.py +895 -0
- agentpool_storage/project_store.py +325 -0
- agentpool_storage/session_store.py +26 -6
- agentpool_storage/sql_provider/__init__.py +4 -2
- agentpool_storage/sql_provider/models.py +48 -0
- agentpool_storage/sql_provider/sql_provider.py +269 -3
- agentpool_storage/sql_provider/utils.py +12 -13
- agentpool_storage/zed_provider/__init__.py +16 -0
- agentpool_storage/zed_provider/helpers.py +281 -0
- agentpool_storage/zed_provider/models.py +130 -0
- agentpool_storage/zed_provider/provider.py +442 -0
- agentpool_storage/zed_provider.py +803 -0
- agentpool_toolsets/__init__.py +0 -2
- agentpool_toolsets/builtin/__init__.py +2 -12
- agentpool_toolsets/builtin/code.py +96 -57
- agentpool_toolsets/builtin/debug.py +118 -48
- agentpool_toolsets/builtin/execution_environment.py +115 -230
- agentpool_toolsets/builtin/file_edit/file_edit.py +115 -7
- agentpool_toolsets/builtin/skills.py +9 -4
- agentpool_toolsets/builtin/subagent_tools.py +64 -51
- agentpool_toolsets/builtin/workers.py +4 -2
- agentpool_toolsets/composio_toolset.py +2 -2
- agentpool_toolsets/entry_points.py +3 -1
- agentpool_toolsets/fsspec_toolset/__init__.py +13 -1
- agentpool_toolsets/fsspec_toolset/diagnostics.py +860 -73
- agentpool_toolsets/fsspec_toolset/grep.py +99 -7
- agentpool_toolsets/fsspec_toolset/helpers.py +3 -2
- agentpool_toolsets/fsspec_toolset/image_utils.py +161 -0
- agentpool_toolsets/fsspec_toolset/toolset.py +500 -95
- agentpool_toolsets/mcp_discovery/__init__.py +5 -0
- agentpool_toolsets/mcp_discovery/data/mcp_servers.parquet +0 -0
- agentpool_toolsets/mcp_discovery/toolset.py +511 -0
- agentpool_toolsets/mcp_run_toolset.py +87 -12
- agentpool_toolsets/notifications.py +33 -33
- agentpool_toolsets/openapi.py +3 -1
- agentpool_toolsets/search_toolset.py +3 -1
- agentpool-2.1.9.dist-info/RECORD +0 -474
- agentpool_config/resources.py +0 -33
- agentpool_server/acp_server/acp_tools.py +0 -43
- agentpool_server/acp_server/commands/spawn.py +0 -210
- agentpool_storage/text_log_provider.py +0 -275
- agentpool_toolsets/builtin/agent_management.py +0 -239
- agentpool_toolsets/builtin/chain.py +0 -288
- agentpool_toolsets/builtin/history.py +0 -36
- agentpool_toolsets/builtin/integration.py +0 -85
- agentpool_toolsets/builtin/tool_management.py +0 -90
- agentpool_toolsets/builtin/user_interaction.py +0 -52
- agentpool_toolsets/semantic_memory_toolset.py +0 -536
- {agentpool-2.1.9.dist-info → agentpool-2.5.0.dist-info}/entry_points.txt +0 -0
- {agentpool-2.1.9.dist-info → agentpool-2.5.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -11,7 +11,7 @@ from agentpool.resource_providers import ResourceProvider
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
if TYPE_CHECKING:
|
|
14
|
-
from collections.abc import Mapping
|
|
14
|
+
from collections.abc import Mapping, Sequence
|
|
15
15
|
|
|
16
16
|
from agentpool.tools.base import Tool
|
|
17
17
|
|
|
@@ -19,6 +19,35 @@ if TYPE_CHECKING:
|
|
|
19
19
|
logger = get_logger(__name__)
|
|
20
20
|
|
|
21
21
|
|
|
22
|
+
def get_schema(channel_names: list[str] | None) -> OpenAIFunctionDefinition:
|
|
23
|
+
properties: dict[str, Any] = {
|
|
24
|
+
"message": {"type": "string", "description": "The notification message body"},
|
|
25
|
+
"title": {"type": "string", "description": "Optional notification title"},
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
if channel_names:
|
|
29
|
+
properties["channel"] = {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"enum": channel_names,
|
|
32
|
+
"description": "Send to a specific channel. If not specified, sends to all channels.",
|
|
33
|
+
}
|
|
34
|
+
else:
|
|
35
|
+
properties["channel"] = {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "Send to a specific channel. If not specified, sends to all channels.",
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return OpenAIFunctionDefinition(
|
|
41
|
+
name="send_notification",
|
|
42
|
+
description=(
|
|
43
|
+
"Send a notification via configured channels. "
|
|
44
|
+
"Specify a channel name to send to that channel only, "
|
|
45
|
+
"or omit to broadcast to all channels."
|
|
46
|
+
),
|
|
47
|
+
parameters={"type": "object", "properties": properties, "required": ["message"]},
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
|
|
22
51
|
class NotificationsTools(ResourceProvider):
|
|
23
52
|
"""Provider for Apprise-based notification tools.
|
|
24
53
|
|
|
@@ -53,44 +82,15 @@ class NotificationsTools(ResourceProvider):
|
|
|
53
82
|
self._apprise.add(url, tag=channel_name)
|
|
54
83
|
logger.debug("Added notification URL", channel=channel_name, url=url[:30] + "...")
|
|
55
84
|
|
|
56
|
-
async def get_tools(self) ->
|
|
85
|
+
async def get_tools(self) -> Sequence[Tool]:
|
|
57
86
|
"""Get notification tools with dynamic schema based on configured channels."""
|
|
58
87
|
if self._tools is not None:
|
|
59
88
|
return self._tools
|
|
60
89
|
|
|
61
90
|
channel_names = sorted(self.channels.keys())
|
|
62
|
-
|
|
63
|
-
properties: dict[str, Any] = {
|
|
64
|
-
"message": {"type": "string", "description": "The notification message body"},
|
|
65
|
-
"title": {"type": "string", "description": "Optional notification title"},
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
if channel_names:
|
|
69
|
-
properties["channel"] = {
|
|
70
|
-
"type": "string",
|
|
71
|
-
"enum": channel_names,
|
|
72
|
-
"description": "Send to a specific channel. If not specified, sends to all channels.", # noqa: E501
|
|
73
|
-
}
|
|
74
|
-
else:
|
|
75
|
-
properties["channel"] = {
|
|
76
|
-
"type": "string",
|
|
77
|
-
"description": "Send to a specific channel. If not specified, sends to all channels.", # noqa: E501
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
schema_override = OpenAIFunctionDefinition(
|
|
81
|
-
name="send_notification",
|
|
82
|
-
description=(
|
|
83
|
-
"Send a notification via configured channels. "
|
|
84
|
-
"Specify a channel name to send to that channel only, "
|
|
85
|
-
"or omit to broadcast to all channels."
|
|
86
|
-
),
|
|
87
|
-
parameters={"type": "object", "properties": properties, "required": ["message"]},
|
|
88
|
-
)
|
|
89
|
-
|
|
91
|
+
schema = get_schema(channel_names)
|
|
90
92
|
self._tools = [
|
|
91
|
-
self.create_tool(
|
|
92
|
-
self.send_notification, schema_override=schema_override, open_world=True
|
|
93
|
-
)
|
|
93
|
+
self.create_tool(self.send_notification, schema_override=schema, open_world=True)
|
|
94
94
|
]
|
|
95
95
|
return self._tools
|
|
96
96
|
|
agentpool_toolsets/openapi.py
CHANGED
|
@@ -13,6 +13,8 @@ from agentpool.resource_providers import ResourceProvider
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
if TYPE_CHECKING:
|
|
16
|
+
from collections.abc import Sequence
|
|
17
|
+
|
|
16
18
|
import httpx
|
|
17
19
|
from upathtools import JoinablePathLike
|
|
18
20
|
|
|
@@ -41,7 +43,7 @@ class OpenAPITools(ResourceProvider):
|
|
|
41
43
|
self._operations: dict[str, Any] = {}
|
|
42
44
|
self._factory: OpenAPICallableFactory | None = None
|
|
43
45
|
|
|
44
|
-
async def get_tools(self) ->
|
|
46
|
+
async def get_tools(self) -> Sequence[Tool]:
|
|
45
47
|
"""Get all API operations as tools."""
|
|
46
48
|
if not self._spec:
|
|
47
49
|
await self._load_spec()
|
|
@@ -9,6 +9,8 @@ from agentpool.resource_providers import ResourceProvider
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
if TYPE_CHECKING:
|
|
12
|
+
from collections.abc import Sequence
|
|
13
|
+
|
|
12
14
|
from searchly.base import (
|
|
13
15
|
CountryCode,
|
|
14
16
|
LanguageCode,
|
|
@@ -178,7 +180,7 @@ class SearchTools(ResourceProvider):
|
|
|
178
180
|
|
|
179
181
|
return formatted
|
|
180
182
|
|
|
181
|
-
async def get_tools(self) ->
|
|
183
|
+
async def get_tools(self) -> Sequence[Tool]:
|
|
182
184
|
"""Get search tools from configured providers."""
|
|
183
185
|
tools: list[Tool] = []
|
|
184
186
|
if self._web_provider:
|
agentpool-2.1.9.dist-info/RECORD
DELETED
|
@@ -1,474 +0,0 @@
|
|
|
1
|
-
acp/README.md,sha256=7cLy5Qsl9zh6m9cWjFmqwsYc_909zY-KQtPxmtX9Hj4,1974
|
|
2
|
-
acp/__init__.py,sha256=a-dSfakqERU2EcGcSogfn8yzoVGtwJWpV_R7Egqd8qY,4260
|
|
3
|
-
acp/__main__.py,sha256=N3wGJDaMk6ug0yHoL2VNqvReyVZSVZKhQyyEiftF3KQ,202
|
|
4
|
-
acp/acp_requests.py,sha256=VdP_ZsVwjO-zNi5xfRxCexMObe8w1zN6wUiL5J8qbec,9051
|
|
5
|
-
acp/agent/__init__.py,sha256=l3zV38uGHie7zX-g9mn8NWcG_CVCOmhF5e045Tikzjw,172
|
|
6
|
-
acp/agent/connection.py,sha256=d9BhuRThhGQ18LPSERN5ls2H6cd9b8wmViUbT1ier24,10147
|
|
7
|
-
acp/agent/implementations/__init__.py,sha256=3GOofHvsWCwgaW9jL_Ju0oCTLMM2DLTvvkBUM5SYVow,127
|
|
8
|
-
acp/agent/implementations/debug_server/__init__.py,sha256=YTqMeHa7HeDQpeeUoB1nOVR6IIB_fm0kbIMVt0o8Ku0,24
|
|
9
|
-
acp/agent/implementations/debug_server/cli.py,sha256=eBd_2MJSnfgiZGDJYprtxsDMoHpoCwMMEIat5WznS5k,2199
|
|
10
|
-
acp/agent/implementations/debug_server/debug.html,sha256=icL_1i7lU3QzwOzaIF_WAaTt0-tvTZdpqXKvPoSa42g,9625
|
|
11
|
-
acp/agent/implementations/debug_server/debug_server.py,sha256=JvL85eYTQ0hLpTkZHZPPWmv3ZjFM3XlEaHEBk_EWM5o,17595
|
|
12
|
-
acp/agent/implementations/testing.py,sha256=zjbAbCyDxcXdoQdW1jnjzNRZ1qUkGh-l4xzGV8UGdmc,2996
|
|
13
|
-
acp/agent/protocol.py,sha256=MW3NYC1hGFNiN8IlB0HTUR5oNb2pgy4TaYHvtrbUIWM,2049
|
|
14
|
-
acp/bridge/README.md,sha256=tHIHjozr81gEbDqPUST_spJaBf6DWolE6NtdM5ykSzE,3857
|
|
15
|
-
acp/bridge/__init__.py,sha256=t-Hiwru6_ftb_AnCFQ-P29S6fl-evKm2Jj43od38hMQ,208
|
|
16
|
-
acp/bridge/__main__.py,sha256=sMu8dh3kuVMot0A9ODrKEkhOArycRFdX6y0pecePN7M,2518
|
|
17
|
-
acp/bridge/bridge.py,sha256=OAAnrWzhMb0tjEwe9sNXPJUqekOuAqu1Vtg91K9a18A,10211
|
|
18
|
-
acp/bridge/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
acp/bridge/settings.py,sha256=T-9iRC0J1CnUuoDZ2aHiXzoJ785pkXHvNeJ9VAweypk,318
|
|
20
|
-
acp/client/__init__.py,sha256=-NFsoqyf85oNs1ok6gcI5m-tsP2JqtdASb94Gg4h_AM,312
|
|
21
|
-
acp/client/connection.py,sha256=r0IEd1WDeQsqNVw14yTN4-nhisYW7vxr_3ygqdUPygk,9819
|
|
22
|
-
acp/client/implementations/__init__.py,sha256=0A4Ht4ldBiifeIlC5TBg8V4UNPXOMA9ffWrVdDp4JxA,308
|
|
23
|
-
acp/client/implementations/default_client.py,sha256=Daz08BUYN9O9Tpx4RkPNFvztcY2bx22Nvm-nn0OfgKM,7269
|
|
24
|
-
acp/client/implementations/headless_client.py,sha256=4R-LD7TM6C3IYPQSjhd_ibV_I-YXDnn5qGYzxmChcj8,10994
|
|
25
|
-
acp/client/implementations/noop_client.py,sha256=UJYSNTDClZI-CO7SpbjRM5tW4pKAPxRMh65HNvx8LMQ,3907
|
|
26
|
-
acp/client/protocol.py,sha256=_dlRDzdL9_D7ubFwoY8RYz4nDYlfCNyqJlTULAh-ZFw,1932
|
|
27
|
-
acp/connection.py,sha256=ybN6UrVruh1jTLjADX0JZj0WCEIzpV0BPxJW1_ythkw,10300
|
|
28
|
-
acp/exceptions.py,sha256=ELTB_k0e1YZn06pPasHxvMpMq-j0qwzF2fZ6WxoJea0,1513
|
|
29
|
-
acp/filesystem.py,sha256=255NCw8IMKYSdFZsxvhRkqkvSZuFvEJnUdcZ9OT29A0,19277
|
|
30
|
-
acp/notifications.py,sha256=T_tGf9t5Q_LOS86XI5z9xxhHbFgE13brPH1Xwc2dybk,33025
|
|
31
|
-
acp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
acp/schema/__init__.py,sha256=F2mbApdMqvTsJbZTS3F1xl8RYsfJmsWQ4ZaztSD46Qs,6560
|
|
33
|
-
acp/schema/agent_plan.py,sha256=65uyLfzpGiSB3pD0xyMi9kmxYp-VRcsC-8snFo_Rn7U,869
|
|
34
|
-
acp/schema/agent_requests.py,sha256=xhRyq1GNImVReIUfO2w1CclP8tQ8c0mWgm4EbsSM0AQ,3559
|
|
35
|
-
acp/schema/agent_responses.py,sha256=-8ul2g0wbStXxCKcZsrxd_bsZBmjUZxhIe3xfSGcGRM,7569
|
|
36
|
-
acp/schema/base.py,sha256=aAmVmcwsrkOxjAoT9wN3vmDdliFPpM8kRIBakfbg77k,810
|
|
37
|
-
acp/schema/capabilities.py,sha256=U1weFTaVizz8Did8KzVUi5QyLfUYoWwwaAaYzhsRGCg,7913
|
|
38
|
-
acp/schema/client_requests.py,sha256=FdQw2T3-A0ql8cOY55LxW2ODBITnZTaO7NWc-fQUXR8,7517
|
|
39
|
-
acp/schema/client_responses.py,sha256=9qsurxTkplsLwTM6J_j5A64cx0dKHzqiH5hRQrhnklU,2466
|
|
40
|
-
acp/schema/common.py,sha256=H8omlrRFpm1YN3VL4pBAV7y67y8_5ZuO8XBjjRVt1Lg,2197
|
|
41
|
-
acp/schema/content_blocks.py,sha256=vBe3Ao6oSneEY3a_nwQSi37HxKkkhgCNsDHHuehMHUw,4898
|
|
42
|
-
acp/schema/mcp.py,sha256=2qHNzjDHi6z9Kp_RncwEPojZmbsdi8S4O5x3ZySK-Jg,2057
|
|
43
|
-
acp/schema/messages.py,sha256=3KkCIVdKo04j0dlrUtryEj0KGJVwZeft24Rj1-cZj8A,4676
|
|
44
|
-
acp/schema/notifications.py,sha256=5KMpn-DNZTfXvJzx7O2P5MLmb1InOCgaQtTlWEg2CpQ,2650
|
|
45
|
-
acp/schema/protocol_stuff.md,sha256=R7eFXdp2nikbaXLJvRgZfm-6W7l84ZRsvnKHLXbWnaM,124
|
|
46
|
-
acp/schema/session_state.py,sha256=_neWEEvkbVSVRNuKV7WMHFumv03dJbsuHF2FukYfzeM,4165
|
|
47
|
-
acp/schema/session_updates.py,sha256=9qIfY2NrFfPZdB_kvCuFjZfMq-EGagmUTz6nM0RuRY0,12870
|
|
48
|
-
acp/schema/slash_commands.py,sha256=Xgh4Z6Ne_qmEnjYkRiUWeyP4KCjzlONrt-SP9MQgHQo,1453
|
|
49
|
-
acp/schema/terminal.py,sha256=ksBe84Bs5F-I3LWrWXgRn6X345Dw15OSWMDQnFKHCP0,425
|
|
50
|
-
acp/schema/tool_call.py,sha256=0MyXngLhR_8FiQh9nRCviCpEFYdkOW1n41A67WZJF7c,11025
|
|
51
|
-
acp/stdio.py,sha256=SCmMdEfg-P8GBqTCGeELMxOT795sfsbQi6hwrtRfaig,8546
|
|
52
|
-
acp/task/__init__.py,sha256=U_sET_Sf8fLbs21_96_z4UJCjrcqFF5j8pfmOWJC_8M,1227
|
|
53
|
-
acp/task/debug.py,sha256=6D1aJ4ABLlQLo69XsVGfSTd_ZB5XJRqi1ZG5g-6-UBY,6906
|
|
54
|
-
acp/task/dispatcher.py,sha256=n50NBHyLRFX6odlCuEWeuexqsC7lfRqXSDX3fUcdvZI,2984
|
|
55
|
-
acp/task/queue.py,sha256=f2j82kq98EhvXzIDbsz5QCaMA4qgtnmpKbINWkK5a0Q,1772
|
|
56
|
-
acp/task/sender.py,sha256=e7GN2OhnFKHWWoVduw-VMkCvwUiU_wvV81NHanl6tpY,2428
|
|
57
|
-
acp/task/state.py,sha256=_wfGlIxNeOTZoGnyaVoJyZ5zp7YS5OZfhsexMXSCjkQ,2870
|
|
58
|
-
acp/task/supervisor.py,sha256=U8l4MoK8ci4_OPKKA7g3FEOLwKB1Thpr-1I19iRs6XA,2942
|
|
59
|
-
acp/terminal_handle.py,sha256=nNm7ryzApuk2YpBo4hTH3CMzL39X4ORmsV8IO7fZ6Nw,979
|
|
60
|
-
acp/tool_call_reporter.py,sha256=_BBCd-LnyDxfpcXgbX5MuVjCn2PhntJYtdXrhatCHPU,7007
|
|
61
|
-
acp/tool_call_state.py,sha256=9crvqnnC6Ofpvk1mf8YaWwbFFYmFWAOby-UGxc0-mcU,6004
|
|
62
|
-
acp/transports.py,sha256=HcSiVfF0fLB2s57ly-JUSQIRYweeUf3fKNb5rjxckwg,2891
|
|
63
|
-
acp/utils.py,sha256=cbLZyUaesKYvTPKJRKbl9y_vBhaUIF8SL0mtdP1sjN0,8702
|
|
64
|
-
agentpool/__init__.py,sha256=XlCiOr8nP8FT9k6ZMwJEbNtwnefe_9jpjoEisUn-Njk,1604
|
|
65
|
-
agentpool/__main__.py,sha256=m6sATzeG9JSTQB37V29ooNz-1ScKBObFpfPIGsBFRn8,149
|
|
66
|
-
agentpool/agents/__init__.py,sha256=WNMfGAD2yc_kOOH6UAh5Wxm0HDUg9gQLGjcRNjmab_4,801
|
|
67
|
-
agentpool/agents/acp_agent/__init__.py,sha256=ciQUOhtOjjF9wT1qjUi-IgNyBf4E63e8EzSpnvEZWmg,89
|
|
68
|
-
agentpool/agents/acp_agent/acp_agent.py,sha256=FeK8nbgHTaNps8wmF-HDTQrKR5gjW9Qd2InTV1O-3fc,34404
|
|
69
|
-
agentpool/agents/acp_agent/acp_converters.py,sha256=zJBoT9KE3NSqCPuYFz6woYE3ew8vZVcT3V70mhclrBM,10794
|
|
70
|
-
agentpool/agents/acp_agent/client_handler.py,sha256=7l4zqG9nFZDGLonPa8bkns3KdQx8ZZuMeOQrHkGDSKQ,13752
|
|
71
|
-
agentpool/agents/acp_agent/session_state.py,sha256=VsvGjt9Hr5p2wd4O4evvRKD3HNs6CpDFd2ILagPPNOs,1267
|
|
72
|
-
agentpool/agents/agent.py,sha256=ZFg5afPUNqfpUAhWZzsod6gISRrlBt1L_vfwUp_qUnE,51237
|
|
73
|
-
agentpool/agents/agui_agent/__init__.py,sha256=8GfT9EJ3uG96IOwV8zsqG-_EsqN_N2C21tZdddmt1z0,523
|
|
74
|
-
agentpool/agents/agui_agent/agui_agent.py,sha256=Cof0DxfckF-SH7AmFv6VKZhxyvv2I3Jv-3amKulvBbE,28907
|
|
75
|
-
agentpool/agents/agui_agent/agui_converters.py,sha256=2ynOezHzqvkU3Q_mNsjeFRUwQYgzSV0aGaRFZ2okOEk,14146
|
|
76
|
-
agentpool/agents/agui_agent/chunk_transformer.py,sha256=UFbqmmralMxn256bLoiLzWtocJlSjg2ayzOXSU_5mhU,7125
|
|
77
|
-
agentpool/agents/agui_agent/event_types.py,sha256=c2MUoM04MhOPOqHwGnaxJpeOul72rnDFIu2Rih8v05U,2047
|
|
78
|
-
agentpool/agents/agui_agent/helpers.py,sha256=Yq9mOQdBQVeOt9KE4Bn9QURoGBe0QKBDGyp99UP7bI0,6519
|
|
79
|
-
agentpool/agents/architect.py,sha256=KPBuyLWQwR_DEB0xOWWz8xCoBEH3yKMn0MbYRz-T_pI,2109
|
|
80
|
-
agentpool/agents/base_agent.py,sha256=HB4ngYR7U6r8JcP_G_UATUCoRaURB1BxaRs2dnDbd-k,6369
|
|
81
|
-
agentpool/agents/claude_code_agent/__init__.py,sha256=nQ1f8HfvpodAlaaqo0Pt_1c2H537JThMGBVkXNCGeqQ,348
|
|
82
|
-
agentpool/agents/claude_code_agent/claude_code_agent.py,sha256=nSxJ_t1BvW3LgSGQ7lUBGtOUFejINk2Og-EBktcIfL4,45200
|
|
83
|
-
agentpool/agents/claude_code_agent/converters.py,sha256=Vehxee8SLD3t9QBrGO1PfHTR3uxYuH-SJ0nO1TbGeNM,10281
|
|
84
|
-
agentpool/agents/context.py,sha256=wakQXI2SFy4H6rj3TFl8_P1SdaNjD59YQtSmiEvoJIY,3723
|
|
85
|
-
agentpool/agents/events/__init__.py,sha256=csieDyrcvlNcg4gv4kAfEbqVNb3V-4PGyw8vRs98Eck,1410
|
|
86
|
-
agentpool/agents/events/builtin_handlers.py,sha256=LtfsPohOe3r79YREbjHKKgNwVWs1z7r7loMqTzdxoVA,4587
|
|
87
|
-
agentpool/agents/events/event_emitter.py,sha256=y3DGwLzNUXjR049_Ag2x4p63SMPcHOwb7JExbczc6p4,10623
|
|
88
|
-
agentpool/agents/events/events.py,sha256=jSCuZkWAno3UnGkRae3_IAPWpXAdr4LI0EQaBBRyYNI,17221
|
|
89
|
-
agentpool/agents/events/tts_handlers.py,sha256=-nJVTfw_mg8jK8YGyg4wuhZCAO5wXUcYogEmQfi0o10,5994
|
|
90
|
-
agentpool/agents/interactions.py,sha256=6F1cuW4gBJWvbhl8ZCGSVlqkK119CEnmD8-gTMDjNlY,13190
|
|
91
|
-
agentpool/agents/slashed_agent.py,sha256=0C83Fc5VsTGTRyJ6I7YqhcyFE69XTn2AhXw-9LImtrs,9091
|
|
92
|
-
agentpool/agents/sys_prompts.py,sha256=TnYb90YrPN_2PXbb0V4Qi2zFrFNWtWv2ynJC5KTj4yU,5930
|
|
93
|
-
agentpool/agents/tool_wrapping.py,sha256=TyYDWC8O898hPvmmrfy5fdb5gOS9EpZVYQ43QNkq8WE,7336
|
|
94
|
-
agentpool/base_provider.py,sha256=gsvswWxIO2hMuZXstJcsT-lNzZYnk2YhqmFjyiaVvoY,887
|
|
95
|
-
agentpool/common_types.py,sha256=j532ITXqJaY1zaM2ZObSgXkSVMBc5OUnsCgdBRE8uxo,7876
|
|
96
|
-
agentpool/config_resources/__init__.py,sha256=YxrdSpEFaBRH3EPlQKUpJudEkHhqQotKWroJdUJZqAs,498
|
|
97
|
-
agentpool/config_resources/acp_assistant.yml,sha256=6S66z-BvI8Hb-u_dZX4vkHME6WYELJm-bf51NAyvyRU,884
|
|
98
|
-
agentpool/config_resources/agents.yml,sha256=iRJlu6n06voOXPqpl-m8jRHSm_sOKos8oPozCpfiQHY,3269
|
|
99
|
-
agentpool/config_resources/agents_template.yml,sha256=7-n0kcrm92YwpT1L35i8YSoWqOIg5UnNrnJ1jQSeHek,634
|
|
100
|
-
agentpool/config_resources/agui_test.yml,sha256=TTaA671k0jk1Y2vKI13PwBhHqKmKejAlJhHnGyKnbNg,655
|
|
101
|
-
agentpool/config_resources/claude_code_agent.yml,sha256=lbph8opzixP2qvLZeRTtvd-NefnAFcE4Lh4ec1_WZfg,500
|
|
102
|
-
agentpool/config_resources/claude_style_subagent.md,sha256=6RMWSUPMn3QgBObya1q-2nJDkDOwmxJ1qAoX51hEFws,904
|
|
103
|
-
agentpool/config_resources/external_acp_agents.yml,sha256=8SjwPvPpIgjWDYZAA9O8EMi_b-vdNLOSE6WIanejDGE,2221
|
|
104
|
-
agentpool/config_resources/opencode_style_subagent.md,sha256=j2OjMI38pPmJfYSW327AVLQsoKkqmJ5NqB0GNHDTM1Q,411
|
|
105
|
-
agentpool/config_resources/tts_test_agents.yml,sha256=sVBTpDm63kZf4s-rxwpW_tQQTr-obS27EizSp7ab5Mc,2532
|
|
106
|
-
agentpool/delegation/__init__.py,sha256=CPQgs3IUPWt4jL3YvC6xOHnPF8-WzIpgNIkyGHC2oQ8,305
|
|
107
|
-
agentpool/delegation/base_team.py,sha256=MqTN0IpJvL7qqjH6rK7xfefQIprKdqA_YB0cSRwQ1xw,18143
|
|
108
|
-
agentpool/delegation/message_flow_tracker.py,sha256=TU2uy9trbtIU-2sW8m2_eUoqfoXlS2rojyxaQIaYaKQ,1312
|
|
109
|
-
agentpool/delegation/pool.py,sha256=gpoo-yOKxY8cY2D5K7EAzdMJvY0wk_0jqXkghETE3Yg,43981
|
|
110
|
-
agentpool/delegation/team.py,sha256=aH7SSjy6i6dH8M0h2HjsqqNpG2emOFq2SEpLMZYfYsQ,12289
|
|
111
|
-
agentpool/delegation/teamrun.py,sha256=k5HWoL4HdSEUw40UNS91nPkOyNXd25nb_GdY4Hpi72o,12826
|
|
112
|
-
agentpool/docs/__init__.py,sha256=lMdVgo2V7fdRjF_9AmqW7TosE6NdJE7LbvMcLlBJwDY,155
|
|
113
|
-
agentpool/docs/gen_examples.py,sha256=ER0nKe99lVxGo60BIYf4D2Ejo8BV9fwUozrNYZEP1tA,1374
|
|
114
|
-
agentpool/docs/utils.py,sha256=AQen7CKftuqrOXvvyHGKn2CiQdNskw8W0wWnZXqBytA,11161
|
|
115
|
-
agentpool/functional/__init__.py,sha256=ezWxbd6EMVm4kkT834tt2ySoK6y3ysRkFkB1HIIvDv4,385
|
|
116
|
-
agentpool/functional/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
117
|
-
agentpool/functional/run.py,sha256=w8yK8-ZFBC3x1MXsunHL_UfqqkaeW_nSrrlfKablfPM,1918
|
|
118
|
-
agentpool/functional/structure.py,sha256=xayRC2CoEw6ulYM5TJ7wAHDBMroSOOMCo649ORV-744,4298
|
|
119
|
-
agentpool/hooks/__init__.py,sha256=dhYV3qP_M41jVsVoLNP0fjSQrIhONSBT9eFIcmwvhQw,513
|
|
120
|
-
agentpool/hooks/agent_hooks.py,sha256=AL1h5k6UzQlQPEyTa_WO25Pv2nUaLKHkJyjPfb19XGs,8214
|
|
121
|
-
agentpool/hooks/base.py,sha256=P8wT33sKf-ngBEG-IAiIdxSOEGDw_Kg9WAiWmhDtvzg,3167
|
|
122
|
-
agentpool/hooks/callable.py,sha256=Hix-QBo1M_wUsfaWD6-9VMAtIZ_lpRowha_gy_Nzm04,4745
|
|
123
|
-
agentpool/hooks/command.py,sha256=WLzadbkkfC5hp2WKVeRfS6dzDLDkfKcE0Itnldnb-og,5513
|
|
124
|
-
agentpool/hooks/prompt.py,sha256=CAwXPJnvW1nmBa5ruk8lOpzrC3NPDsmqcGJpEKilHvU,3799
|
|
125
|
-
agentpool/jinja_filters.py,sha256=NT_fcDE7oBbpzZ04UJu4UHIk_a8B26Hrel05zn4BmS0,3995
|
|
126
|
-
agentpool/log.py,sha256=oKA7P258VYg-Q0EymBny2RdeWhjRfFrBoyFhNb8t9Is,7727
|
|
127
|
-
agentpool/mcp_server/__init__.py,sha256=CP79P8hs9KV06yYyYIXDmRlXOsXhVOl8v6BlBwn0mQU,362
|
|
128
|
-
agentpool/mcp_server/client.py,sha256=QSava7_htMmS9XhC64N8zMDpiL68pkKrRTG8ldsn0Jo,17447
|
|
129
|
-
agentpool/mcp_server/constants.py,sha256=Z1eNrsGPA3__rPMSC9REUJhIW8y7mGq909iFGTna5P8,693
|
|
130
|
-
agentpool/mcp_server/conversions.py,sha256=iy-tarfP1lVTx4teljQYJsWBjlZMROtdIghSuDHf09I,6649
|
|
131
|
-
agentpool/mcp_server/helpers.py,sha256=QD0qLLOIA5EcwEc9GxjWwLPK_i0SE9C-NOGiCpk67Ek,1243
|
|
132
|
-
agentpool/mcp_server/manager.py,sha256=Zr2uER62c934Otz_iOx4Elnz_G0avqtXTFOF9I0Erqo,8796
|
|
133
|
-
agentpool/mcp_server/message_handler.py,sha256=UBrajTlv6XRRvgC3m15uniuJ60dKsqboK-lzzuFTO3g,6670
|
|
134
|
-
agentpool/mcp_server/registries/__init__.py,sha256=ovKQKyrGBbHTMA6eMRbXx7PzFxQJrfOWFoxXo491nxk,28
|
|
135
|
-
agentpool/mcp_server/registries/official_registry_client.py,sha256=xcG29hhy18Fkp5zeBqyxyLac2GVgXrQkWJy0Y8y7LcY,11557
|
|
136
|
-
agentpool/mcp_server/registries/pulsemcp_client.py,sha256=r2raIWX4kiEJOnoRY0IkpS8lUgDsHYytHySMhAh9K0w,2431
|
|
137
|
-
agentpool/mcp_server/tool_bridge.py,sha256=Pk4S6D033thnEZWkCfZq50cR1zLppT-J-o1raBY0JsM,20554
|
|
138
|
-
agentpool/messaging/__init__.py,sha256=nQH_xYeMlSxMHcNi73mNu-WsaPNqO2FJ_rnF5HhfUSY,1510
|
|
139
|
-
agentpool/messaging/compaction.py,sha256=FL9DdGWm9Sph40wItthgprS_M4yBkgv8zaAOg6l-zRU,31123
|
|
140
|
-
agentpool/messaging/connection_manager.py,sha256=6LbVgV3iiAZ1bcMFqb6P40lcj5bXBteOxB5YaHYmNTA,12189
|
|
141
|
-
agentpool/messaging/context.py,sha256=2iaVbnXl_vFK0R9847pf4mc_32ZdbltOWIGbMC46ddA,1937
|
|
142
|
-
agentpool/messaging/event_manager.py,sha256=9PeOeQ2qFVzCYJmMTy_dEeyse03mP86XMVP8wkROdlM,14719
|
|
143
|
-
agentpool/messaging/events.py,sha256=WPfkC70ECeCtGkaLDCuffKs72NKygjo2gL-yW8a-JQ4,1104
|
|
144
|
-
agentpool/messaging/message_container.py,sha256=qWba-yVw19SzFxTDGPqYrqEHIcvSVhNw99jumWGKUTU,6855
|
|
145
|
-
agentpool/messaging/message_history.py,sha256=XD25y6Oy7L7k3gJEPgjkahWHwNL1c_8tzNQNXYZUI5g,17469
|
|
146
|
-
agentpool/messaging/messagenode.py,sha256=6OpxX2LC_O6GsrHngSS7GNcqda44lstW_YAY99ArNm4,13478
|
|
147
|
-
agentpool/messaging/messages.py,sha256=46uFqSdkinDR4PV6NYE8BJSVs0XBlPPrQHOtEn0-tK8,22666
|
|
148
|
-
agentpool/messaging/processing.py,sha256=zUVxMyY4CVO8hQaFSs3C051tCmfCgtlX4xLaV7-hj6c,2739
|
|
149
|
-
agentpool/mime_utils.py,sha256=WrTuZIudFlJH4yXf7s2F9OqeZwKjKF84zjKXCoO300g,2468
|
|
150
|
-
agentpool/models/__init__.py,sha256=M3NFbjen7HbLebkQSNQEQed5pxIfJf5N8QywGB16OCI,633
|
|
151
|
-
agentpool/models/acp_agents/__init__.py,sha256=pMlTEmTZ2v-6viVScU12kexB_jPBl2Fg7DM01hrjCls,671
|
|
152
|
-
agentpool/models/acp_agents/base.py,sha256=fWekV4Hc-TJsowoeCvchwZ7s91uJCvV4srrJ9MbKdew,11019
|
|
153
|
-
agentpool/models/acp_agents/mcp_capable.py,sha256=YD20Z0etY93Uw6WIN8qTyK9FlHiAX3WxJrxx45tvIdc,25890
|
|
154
|
-
agentpool/models/acp_agents/non_mcp.py,sha256=DhfdSm45DcxaOsSNzYJQcLYTozldJ-8Tow3Zhzg02N4,26330
|
|
155
|
-
agentpool/models/agents.py,sha256=8xd_yry9jH9DdWweq1RGMd2w9BMYQSpw8AJJoKZGeFQ,17838
|
|
156
|
-
agentpool/models/agui_agents.py,sha256=6cAj9xRTU-7IghZmhygHj37PYtBxLt7_wsx-CffbvgI,2886
|
|
157
|
-
agentpool/models/claude_code_agents.py,sha256=ZhsF2UAet1wGY86hKWbv-k6466iTck4Jkyq48I5P_X0,7753
|
|
158
|
-
agentpool/models/file_agents.py,sha256=ypxzcIqwoMqYFylGPtt7Rb7do5g2QKEGgeOQD8x6JWw,3238
|
|
159
|
-
agentpool/models/file_parsing.py,sha256=XnvEJzJJE1vmSeln5VIEaW93ZTNqVw1Llv-7KhO8v0M,11610
|
|
160
|
-
agentpool/models/manifest.py,sha256=CsyoB_KQol8Lp-OHOp-d34mRW9fu9AovLV8Pv5iAWAg,25211
|
|
161
|
-
agentpool/observability/__init__.py,sha256=N5zVOlQH9l9a0K_GY1xdpp8ABbhmcCO2bdJ2DmLLetw,232
|
|
162
|
-
agentpool/observability/observability_registry.py,sha256=40m60j26u-12SWkIdUNW9M74aUkHxzXc2U7E6anrpbo,3152
|
|
163
|
-
agentpool/prompts/__init__.py,sha256=HKBrk8pyr5pQq47YTxNWZEZ5ItJnVGZCMFS1d4QFtag,34
|
|
164
|
-
agentpool/prompts/base.py,sha256=fCFTjHeE3KJ2k9uPS9abpEe34qCVUpiUgTwz9FJ6C1o,716
|
|
165
|
-
agentpool/prompts/builtin_provider.py,sha256=boL6ZmB4ggQK6Stogphf5CRkkWnK0ujTY36kjoYNfl8,2462
|
|
166
|
-
agentpool/prompts/conversion_manager.py,sha256=JTMw8tBnMBjSVGh1bLkT4ILbEvBTltorCXl6OSE-sg0,3515
|
|
167
|
-
agentpool/prompts/convert.py,sha256=KEAkm6cqoAqkKdBsxcgyeTYkhPIchgQ8EDjKMJ2n_g4,3796
|
|
168
|
-
agentpool/prompts/manager.py,sha256=scaxT3YFqym3p_t0fg45BVYlcXaByoCT_kiBJkDWBZA,6723
|
|
169
|
-
agentpool/prompts/parts/zed.md,sha256=rbJB1S0l_-GG03JD7iybW6U_F7h6cnphoshfy_rrfyo,1675
|
|
170
|
-
agentpool/prompts/prompts.py,sha256=9z0Y6bcbTX5F4eY7F1vuzrSKtILpyXZ2M_FXYhLFkYs,21143
|
|
171
|
-
agentpool/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
|
-
agentpool/queries/tree-sitter-language-pack/README.md,sha256=ivZSEuWqYfUVLZl2AZZGRlm0bQsaG-VTBKBwACyM07k,291
|
|
173
|
-
agentpool/queries/tree-sitter-language-pack/arduino-tags.scm,sha256=HbgdothT9Jjk56COXTtUkVAdZ14rZNnqzLbWVLeRs5U,177
|
|
174
|
-
agentpool/queries/tree-sitter-language-pack/c-tags.scm,sha256=EIz45o5hBh8yEuck5ZR_4IpcGyWSeNrzxFmtkKZGt2k,461
|
|
175
|
-
agentpool/queries/tree-sitter-language-pack/chatito-tags.scm,sha256=ISkmrp5gIVxoYIPnoqxxqBlZj5G9tzhwJMx6b0dEKnQ,338
|
|
176
|
-
agentpool/queries/tree-sitter-language-pack/clojure-tags.scm,sha256=CRvISM9eKamZgNTSkwMAOXTG3yl-92vZvRFFg5mwFy8,194
|
|
177
|
-
agentpool/queries/tree-sitter-language-pack/commonlisp-tags.scm,sha256=GYJlluTPEdrxn4jpYTX5YQAqk171rVBw7IBiCygMgtw,4713
|
|
178
|
-
agentpool/queries/tree-sitter-language-pack/cpp-tags.scm,sha256=2fSqTUcc01ABMHkA0JeG8axEOEXRfEIul8UKc9_tKGI,809
|
|
179
|
-
agentpool/queries/tree-sitter-language-pack/csharp-tags.scm,sha256=KORfK3ehKor6Pf6T5iniuoQr16EcHtUe0q3XIsCjPJs,1162
|
|
180
|
-
agentpool/queries/tree-sitter-language-pack/d-tags.scm,sha256=LDP3orqZ98TTFSkV_PODEs8LspTcCqUMvKcLdZwtgkc,1420
|
|
181
|
-
agentpool/queries/tree-sitter-language-pack/dart-tags.scm,sha256=Pa_leZjxxXQO7mH_zF5o-kZ5lqVxgvbyp8oQb_nZ9KA,2267
|
|
182
|
-
agentpool/queries/tree-sitter-language-pack/elisp-tags.scm,sha256=1r8iOMM_DEpXEvlA1rE7KlhGEzcqa2W6eH4F2d1iu7Y,246
|
|
183
|
-
agentpool/queries/tree-sitter-language-pack/elixir-tags.scm,sha256=fg9TDpbCixLr8UXNcNnfgFlR3Y7d3vtzLRb3LK84UaQ,1682
|
|
184
|
-
agentpool/queries/tree-sitter-language-pack/elm-tags.scm,sha256=Wp1D5wEGzFa_2biBWRaKbghDs57lDGqqsZd7DbPkdn4,953
|
|
185
|
-
agentpool/queries/tree-sitter-language-pack/gleam-tags.scm,sha256=wdFVAkepPAZ10-5sBIVQSl45v95wZP9Foi_iYvM4YII,1416
|
|
186
|
-
agentpool/queries/tree-sitter-language-pack/go-tags.scm,sha256=TE4fQ7PtQvHKPetrhHeDqjMz01KFKFsxFjypnJMv8pI,1339
|
|
187
|
-
agentpool/queries/tree-sitter-language-pack/java-tags.scm,sha256=Xid8cnOPL1v5SOtxfq8dOi98bWrUPL7XeO8_I2qBrfE,624
|
|
188
|
-
agentpool/queries/tree-sitter-language-pack/javascript-tags.scm,sha256=0qlZIwDdsvoEGM0cYD3s2ez27FbYuz8epZAo-cLP1uI,2306
|
|
189
|
-
agentpool/queries/tree-sitter-language-pack/lua-tags.scm,sha256=lqhCVn7KnBVhW8oo_wY9me15nEBTu9BS5YlF1zUTOPs,945
|
|
190
|
-
agentpool/queries/tree-sitter-language-pack/matlab-tags.scm,sha256=GqF7QBytU-xGkcUWkGlMi7iJ7XnmmoMFB_mtMKXaJgw,309
|
|
191
|
-
agentpool/queries/tree-sitter-language-pack/ocaml-tags.scm,sha256=NAcyzmQuQPUjkchrQvcfhsvKqdcqbAt5eFb1chfEhMA,2695
|
|
192
|
-
agentpool/queries/tree-sitter-language-pack/ocaml_interface-tags.scm,sha256=2Vtp9o9EgQ0_kLUkIDXLOAkX9wp5cj_NwdovlwhiidQ,2009
|
|
193
|
-
agentpool/queries/tree-sitter-language-pack/pony-tags.scm,sha256=gGNWmiHzv8Ge0HZo81tev-xIqHIQqjRxPR52G048-zs,2191
|
|
194
|
-
agentpool/queries/tree-sitter-language-pack/properties-tags.scm,sha256=AbcjxhGpG6F6lpCHs83HRXD223b-wrHQYv-i9j09wtc,135
|
|
195
|
-
agentpool/queries/tree-sitter-language-pack/python-tags.scm,sha256=KDCrM7iaUwXZ_hb2wVHrE2_EVCq_ASo3-BmbzsLtFk0,437
|
|
196
|
-
agentpool/queries/tree-sitter-language-pack/r-tags.scm,sha256=3cb2Wt-8Tt1RGBNDPgo4nI9qROf00ONNVqPHv8Th-Mk,461
|
|
197
|
-
agentpool/queries/tree-sitter-language-pack/racket-tags.scm,sha256=iri2aFEabiim-geb-t3ClDVp1Zi8T_rX1H9L0tlpqK8,224
|
|
198
|
-
agentpool/queries/tree-sitter-language-pack/ruby-tags.scm,sha256=vIidsCeE2A0vdFN18yXKqUWmpXMrGXyo4un_0Mxqr6s,1290
|
|
199
|
-
agentpool/queries/tree-sitter-language-pack/rust-tags.scm,sha256=3rz1XqKaOPKPWRUNPTW5OX_TYEDj5tQZfMxBH3EMB6g,1451
|
|
200
|
-
agentpool/queries/tree-sitter-language-pack/solidity-tags.scm,sha256=3uCJsbhwp-dVTiSsrGLt-PQ0uAnjmqUeHFPSEXd2JvM,1395
|
|
201
|
-
agentpool/queries/tree-sitter-language-pack/swift-tags.scm,sha256=ZvJcfjmUDZ9w14AXKSPPxf4gvpdE_qzBxDjfCczYrIQ,1439
|
|
202
|
-
agentpool/queries/tree-sitter-language-pack/udev-tags.scm,sha256=avj3u4prIR7o8hymHezOsqrOqjPSLGYo7C_lOL4Dxlg,417
|
|
203
|
-
agentpool/queries/tree-sitter-languages/README.md,sha256=CvHuhoq0bYOuIfrOQtB-CiE6qhPhEgHMS_jx76CcQZo,2610
|
|
204
|
-
agentpool/queries/tree-sitter-languages/c-tags.scm,sha256=EIz45o5hBh8yEuck5ZR_4IpcGyWSeNrzxFmtkKZGt2k,461
|
|
205
|
-
agentpool/queries/tree-sitter-languages/c_sharp-tags.scm,sha256=wKyFtOFIk-kqIFB2yJBbu1VGRUhdkAnDpxo8sXubkjw,1025
|
|
206
|
-
agentpool/queries/tree-sitter-languages/cpp-tags.scm,sha256=cAFwtQk3ZKsvCVWrp1fmhSwOP8WGTCEDRR5CQuzLlY4,803
|
|
207
|
-
agentpool/queries/tree-sitter-languages/dart-tags.scm,sha256=AjxpyJIXuLjP5u3U89bhWergxus0fbUKk1x1uIHCKPw,2251
|
|
208
|
-
agentpool/queries/tree-sitter-languages/elisp-tags.scm,sha256=wjm1YYD1vgjBbh0E2CzUnmagl82Uq6-LcEojmvhiJkY,332
|
|
209
|
-
agentpool/queries/tree-sitter-languages/elixir-tags.scm,sha256=eO20nPIwI7_vq4Fob6U5RjX1wLKgn6Gglj41ITpE6eg,1605
|
|
210
|
-
agentpool/queries/tree-sitter-languages/elm-tags.scm,sha256=4qTEWJCAd7_BOfwyky0q_NYzAMtGdiq7qwo1GIhXmag,951
|
|
211
|
-
agentpool/queries/tree-sitter-languages/fortran-tags.scm,sha256=BD6M5CVhMpINlLR7U9bL6STRwGLYBrMmvmldOHe1-9U,419
|
|
212
|
-
agentpool/queries/tree-sitter-languages/go-tags.scm,sha256=mHtS5NEuxWJGfVz1rq4YlJRMYVDAl5tf7iYnm6RikVE,848
|
|
213
|
-
agentpool/queries/tree-sitter-languages/haskell-tags.scm,sha256=mopkZ2Py3_Vl3xvpmaryzUVwYWAzl6GaYgmMb9qKD3Q,143
|
|
214
|
-
agentpool/queries/tree-sitter-languages/hcl-tags.scm,sha256=yOVCBeF4C3ZrFG-gg0adWg2QkxylPcI2dbVeEgD7EPE,2137
|
|
215
|
-
agentpool/queries/tree-sitter-languages/java-tags.scm,sha256=7WKb-djGv0Ief6XEWQPYpfLpgJHtMPPukIUi55PegvE,627
|
|
216
|
-
agentpool/queries/tree-sitter-languages/javascript-tags.scm,sha256=svVct6pxbcYP_-xEBwzGy6t1SlN7ajkEUCivUkBZn_Q,2251
|
|
217
|
-
agentpool/queries/tree-sitter-languages/julia-tags.scm,sha256=OdZDoUUljhmY5gnKlRPebbA6lh4OC3RuN4kpJqpKCGs,1719
|
|
218
|
-
agentpool/queries/tree-sitter-languages/kotlin-tags.scm,sha256=ugk8v7Or3PXiBk-_HfZznwLuV-b-s3TYm03Wm3q2h_o,632
|
|
219
|
-
agentpool/queries/tree-sitter-languages/matlab-tags.scm,sha256=GqF7QBytU-xGkcUWkGlMi7iJ7XnmmoMFB_mtMKXaJgw,309
|
|
220
|
-
agentpool/queries/tree-sitter-languages/ocaml-tags.scm,sha256=NAcyzmQuQPUjkchrQvcfhsvKqdcqbAt5eFb1chfEhMA,2695
|
|
221
|
-
agentpool/queries/tree-sitter-languages/ocaml_interface-tags.scm,sha256=2Vtp9o9EgQ0_kLUkIDXLOAkX9wp5cj_NwdovlwhiidQ,2009
|
|
222
|
-
agentpool/queries/tree-sitter-languages/php-tags.scm,sha256=vmE5CH2N46HiQxUpR_FL41ilQqsWsigojiacWXtwTuE,714
|
|
223
|
-
agentpool/queries/tree-sitter-languages/python-tags.scm,sha256=6-npVJM6y6C1q7d6VgcfohN75_iu7QtrLnvwO_L2EmA,325
|
|
224
|
-
agentpool/queries/tree-sitter-languages/ql-tags.scm,sha256=9qVpBGSgFC9fSK4E_5sO2gYe4_jPvN-D18SD6S5lNR8,707
|
|
225
|
-
agentpool/queries/tree-sitter-languages/ruby-tags.scm,sha256=vIidsCeE2A0vdFN18yXKqUWmpXMrGXyo4un_0Mxqr6s,1290
|
|
226
|
-
agentpool/queries/tree-sitter-languages/rust-tags.scm,sha256=9ljM1nzhfPs_ZTRw7cr2P9ToOyhGcKkCoN4_HPXSWi4,1451
|
|
227
|
-
agentpool/queries/tree-sitter-languages/scala-tags.scm,sha256=UxQjz80JIrrJ7Pm56uUnQyThfmQNvwk7aQzPNypB-Ao,1761
|
|
228
|
-
agentpool/queries/tree-sitter-languages/typescript-tags.scm,sha256=OMdCeedPiA24ky82DpgTMKXK_l2ySTuF2zrQ2fJAi9E,1253
|
|
229
|
-
agentpool/queries/tree-sitter-languages/zig-tags.scm,sha256=BPgov_nD_LqpL37sbdwsMYbFmHwjBOuRm76geKo29ds,124
|
|
230
|
-
agentpool/repomap.py,sha256=90_CI1LsNLWCf04mvLN7zqX3NPra1TRuFCF7F0rF8QU,41300
|
|
231
|
-
agentpool/resource_providers/__init__.py,sha256=2aA4ctH5kbNp9GenngZ2ombRz722LwanVlIchTXXn-M,660
|
|
232
|
-
agentpool/resource_providers/aggregating.py,sha256=vMgnS9I3C7NGed8JqPTMeKkrRpLsyHB050hk71uvjP0,1986
|
|
233
|
-
agentpool/resource_providers/base.py,sha256=Y3I-D1JO83ZldW4uEImuALA-Ske464vXUxG6Pk_E9RY,5601
|
|
234
|
-
agentpool/resource_providers/codemode/__init__.py,sha256=Hvu2vtZqcE9XcTX9pb_iPBvj4IgjkkdIuo1A8LZySnM,340
|
|
235
|
-
agentpool/resource_providers/codemode/code_executor.py,sha256=w06Tzq5StML2cyCbvI2mMGykvq3e2z-24_AC6phMNnw,6979
|
|
236
|
-
agentpool/resource_providers/codemode/default_prompt.py,sha256=ZJo42O-WfQeMY8ppiLUcEIbTNhT-6IKrDMQ_j8hh1O8,531
|
|
237
|
-
agentpool/resource_providers/codemode/helpers.py,sha256=Xg-R6EkrrZmm9BGF3VWhWMlpmt65bcyz8H_RgmrJDVo,2441
|
|
238
|
-
agentpool/resource_providers/codemode/progress_executor.py,sha256=mPE-26npxQm1ufvuty0cKiEGxsiTt9aX3qKYJcbbEHg,6978
|
|
239
|
-
agentpool/resource_providers/codemode/provider.py,sha256=fiEN-ShkOYWTn2iOfecR7a3nVOmeurAaUH20JCVOsbY,5806
|
|
240
|
-
agentpool/resource_providers/codemode/remote_mcp_execution.py,sha256=Y48Ab_Nr7R9OFBAYa8OLG1A6VG76CLDDvzsnqVYC0oY,4636
|
|
241
|
-
agentpool/resource_providers/codemode/remote_provider.py,sha256=9HKBa5VkCz4g45An9B2VKgt8fUk0JwA3zgVSmC42tZQ,6137
|
|
242
|
-
agentpool/resource_providers/filtering.py,sha256=PINFQxI1g6d_OaE4X7KXIg9OC6kIEnfhblb8FES0920,1283
|
|
243
|
-
agentpool/resource_providers/mcp_provider.py,sha256=hjSdqyYEG8R8guXLlmeAN6B4z_OsEjlpDkdsYHMBnC4,9423
|
|
244
|
-
agentpool/resource_providers/plan_provider.py,sha256=A3b43fpxQKX5mOuVBm8f658thhuNR3_TtW-_tmReW1U,6534
|
|
245
|
-
agentpool/resource_providers/pool.py,sha256=mSECk82eYnEv5DXzqOqetcbX6mbqihrBJVsNkn6Ymkw,2431
|
|
246
|
-
agentpool/resource_providers/static.py,sha256=_CWkzvwp5wAzh6EZC1KaQT214-FMEO71BGVxQOyLRsg,9338
|
|
247
|
-
agentpool/running/__init__.py,sha256=1rg38fpmdcdi_UnAQKCAMegYfTb_k5vy-luquQUnPIk,589
|
|
248
|
-
agentpool/running/decorators.py,sha256=0jXh892V4hSd2iLRScfQ_9aKkUXR2leoCksm6ols4hA,1736
|
|
249
|
-
agentpool/running/discovery.py,sha256=_H068qrENu-6YZVeF2HNkKgnqro9TnYrEr5iTbC1DvA,3033
|
|
250
|
-
agentpool/running/executor.py,sha256=h-E8FonkwrEgRIoIjR9lKz2vc7yKz5gJVhRNs6P4er0,8836
|
|
251
|
-
agentpool/running/injection.py,sha256=QWOf2yNHRV8mASwso0GVLiLp4vfPE4AWqMg1i5Io5WM,3379
|
|
252
|
-
agentpool/running/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
253
|
-
agentpool/running/run_nodes.py,sha256=1R1aWRC-5kh1UuNkpNy6Xs-jtebs-ldNFaL1k_JNOoQ,2574
|
|
254
|
-
agentpool/server.py,sha256=DGsHjPzr1NWmWdGPLCbU_IFMuejzO4yfy3EsyIPceiM,3492
|
|
255
|
-
agentpool/sessions/__init__.py,sha256=wQxA8jcilIvhi7iTfS7FbSHHCw_LdJPyNwQ0aUzal-w,339
|
|
256
|
-
agentpool/sessions/manager.py,sha256=1f_jxTl2QrYpPkHmMCVdOAhFwjYJS4XXmJC44Re6O7E,9308
|
|
257
|
-
agentpool/sessions/models.py,sha256=EIHi-POLNBuvygKvfKgJZymXUjnY7Mada1M9o5E7MAw,2268
|
|
258
|
-
agentpool/sessions/session.py,sha256=QlOBT2sBXLtrue11Q_U1SGnM5jlKxMwo8Tw2nI2WiTw,7645
|
|
259
|
-
agentpool/sessions/store.py,sha256=yqxSmQAKM7z4pGwYgx56oOaUii7Wv3lxRlefCKnN9X8,4328
|
|
260
|
-
agentpool/skills/__init__.py,sha256=I3nfekg0e6vOzMhK2jR7uHv2DHqdPLBLjAIczD3dzBQ,134
|
|
261
|
-
agentpool/skills/manager.py,sha256=dRZgPoBEWCGXWB2fZpUd7vH_MpGcuKeAaSqwiVqtUvE,4138
|
|
262
|
-
agentpool/skills/registry.py,sha256=FWS5LiI3dIXNYVZdedqA3r_sFXHpT01FToYq7C91q6g,7570
|
|
263
|
-
agentpool/skills/skill.py,sha256=c8OslO4nnH8p6muKTVH_tDvcFz9LfbQ9veAuFZJp_II,1035
|
|
264
|
-
agentpool/storage/__init__.py,sha256=jFxKdECqKXXP_PesXUZawGPBD4ERbX0j2cTN5GjWrQo,358
|
|
265
|
-
agentpool/storage/manager.py,sha256=UXIb04WYBOw_A2tHMUkYSMO5wlseOyio89Qb4fnWZ-Q,14291
|
|
266
|
-
agentpool/storage/serialization.py,sha256=hVwbSoXAngcdBgBd2ucYKxx5Hn0OB9aFtTkB45Mt6Ms,4651
|
|
267
|
-
agentpool/talk/__init__.py,sha256=8uxRmR90LUXGf8Tm66BGzIwAo3M3fVSsbyuZ74e8Sds,300
|
|
268
|
-
agentpool/talk/registry.py,sha256=VjSDy1OICYI62H-c7GfPBucRBkfMFt50JCpuzB77BF0,4318
|
|
269
|
-
agentpool/talk/stats.py,sha256=xzeNlj09DBQFvBKgCUveH4Sn-nJ480VpkroKds-VIbc,5336
|
|
270
|
-
agentpool/talk/talk.py,sha256=NVJ80wldsjkYjyPVbjgBJCjD3lyx4c0SA_JsYICUHo4,22264
|
|
271
|
-
agentpool/tasks/__init__.py,sha256=HpXy_KrC28IidN5GMYLgV0r4Zu8AfGSIbBfsoz14qVY,375
|
|
272
|
-
agentpool/tasks/exceptions.py,sha256=lXIqJaWVJt0BQGQQHn5wTKFnkpJoRLc0oHNlCqP74pk,513
|
|
273
|
-
agentpool/tasks/registry.py,sha256=yOjL0mxX1YjV1v_gai7f_Oq8sFDVrE1Zx0E46vDgqH8,1024
|
|
274
|
-
agentpool/testing.py,sha256=bTx5L39HeTEyVnfw9J24Jb5LgvWjJuF5geYjPNgksR4,4176
|
|
275
|
-
agentpool/text_templates/__init__.py,sha256=BrmnvhBFBiErVit8oz0ctYiGMghHRgM5_vZ3QHLcI3I,1026
|
|
276
|
-
agentpool/text_templates/system_prompt.jinja,sha256=nSXXjsXhJmcZ-H1MYpfeXNP3H_Cqwo86LDuT3KtTCIM,841
|
|
277
|
-
agentpool/text_templates/tool_call_default.jinja,sha256=lmZB9AN7issDyRjSC0FgkR5ZDjOZJfw0s1YkD4gsx_k,223
|
|
278
|
-
agentpool/text_templates/tool_call_markdown.jinja,sha256=QyqOGjNCTddolT1YaxC_lUZI_hUMDJo_TQ2oee29Hp0,412
|
|
279
|
-
agentpool/text_templates/tool_call_simple.jinja,sha256=VcUmYWHc6pDYBEu_HbYba7BM2M9xpx0BXkgGuxYQOyc,180
|
|
280
|
-
agentpool/tools/__init__.py,sha256=QZm_Gc7scNP_NmJvipybE-PsEKBF9CtGfCwJ5-g9bVM,408
|
|
281
|
-
agentpool/tools/base.py,sha256=8sVCCfiXmDPJlpH2c2y4QEfT3N4OWw5YaU3GeJFUwr8,8745
|
|
282
|
-
agentpool/tools/exceptions.py,sha256=oKOrUb60RjitLupYm9n75J_BQVGdidWA-n6pE3QyCCY,190
|
|
283
|
-
agentpool/tools/manager.py,sha256=eUVzI3HSvq6Rk79e1-KxRSRBhoC4yphHZamh2_tYDKQ,9449
|
|
284
|
-
agentpool/tools/tool_call_info.py,sha256=EbNKySnlQ545Q4duOdT7GcUDS27uNwDPZ6SBtnt4OFs,2745
|
|
285
|
-
agentpool/ui/__init__.py,sha256=fwQp1WVM3VyOUR-V1lhaJUeVjmkQGcreflYwWH3-orQ,82
|
|
286
|
-
agentpool/ui/base.py,sha256=vcEtqKrtmUMOcwFsNx93EEkyAAmHEOPWC-X61e00drM,2681
|
|
287
|
-
agentpool/ui/mock_provider.py,sha256=sh4ufsh8Za__bPG-2J2hTte1S_27Swjgpe61K0fsDiQ,2595
|
|
288
|
-
agentpool/ui/stdlib_provider.py,sha256=aPhbIwEvAZL_0DGUP9gJgPQQz4bfN43VG986Q6nk0nM,5243
|
|
289
|
-
agentpool/utils/__init__.py,sha256=nMhW8kYB7ysI-ABlR6Rdq_HyMI_J_QM2D0vA0ho-JKE,1212
|
|
290
|
-
agentpool/utils/baseregistry.py,sha256=CiI4Ph6UmiOlGj_ZTz6DncLnkdeNNdyO01qq02oqZjY,6059
|
|
291
|
-
agentpool/utils/count_tokens.py,sha256=CwlidDhx_H0CFp_8hi20hbpoFcu2osEB-Sdee9jkAgU,1640
|
|
292
|
-
agentpool/utils/dag.py,sha256=jpaKwKxcJt8y1mJLMTqPLCZ8Uco-ZIfdI70D72RFeCk,5374
|
|
293
|
-
agentpool/utils/importing.py,sha256=-OtceIZwLXnmHDVF37TGD7Ui-xc_5B9wWnou4feK7Q8,6272
|
|
294
|
-
agentpool/utils/inspection.py,sha256=WkK_TzElgHSGO7douq5Gr5f8gPD-11sKpDld81FM8XI,10207
|
|
295
|
-
agentpool/utils/model_capabilities.py,sha256=DJ1HJTrS0MCwRKDA44_aqjyrgCgvh109J1b_FFtgWvA,623
|
|
296
|
-
agentpool/utils/network.py,sha256=lUOVBMWQaeyxTlxxM0cdvMx6Lt-JfVulKDUvgYlokQY,736
|
|
297
|
-
agentpool/utils/now.py,sha256=b-rUOZWKQJ1sCgm-N0aY2jB2A7wErx8BIWRdltG_ido,493
|
|
298
|
-
agentpool/utils/parse_time.py,sha256=iGZligPt4X-PM87dV9OjV58Ec6ngbl-gY_ufUmAfogE,2423
|
|
299
|
-
agentpool/utils/result_utils.py,sha256=RhiBzgzghOPCO87KoOslZs9LZQdSBWFi40Yvb-bBw_0,1108
|
|
300
|
-
agentpool/utils/signatures.py,sha256=XzpXPfs1XQb26mD4e8bjUlWXbW1bsswLtifCAuYSELY,11564
|
|
301
|
-
agentpool/utils/streams.py,sha256=acQlWZr7sm8kqGO9yQFEKiET7HOzhF8d8g9StxUmR_Y,4135
|
|
302
|
-
agentpool/utils/tasks.py,sha256=Z1uZi98pFx8BoNBE9ef9P6jr1cgpMNkhT79IFcIuqN8,6581
|
|
303
|
-
agentpool/vfs_registry.py,sha256=0bMQJRp9xjtE6ouKxtfyBzC4J9rkSwc4Bb2ntV3owMc,8079
|
|
304
|
-
agentpool_cli/__init__.py,sha256=fi0loBvgZqzpzcmajCKbrAMxxVFxdaUfCpqLDYxZtDo,903
|
|
305
|
-
agentpool_cli/__main__.py,sha256=EN3Q5L-cahcpVRho_W2BszQzM-1gwxkHMb0LfW7aU4Y,2140
|
|
306
|
-
agentpool_cli/agent.py,sha256=_GZpCXjm9QUaSjuT3JloYDWsgQVebg2AXXa69t4bLYM,5367
|
|
307
|
-
agentpool_cli/cli_types.py,sha256=va8hnyRhzHBNLa8ZvrqpZ-yWzyou0sdWUITYLnYBIjQ,532
|
|
308
|
-
agentpool_cli/common.py,sha256=lz89WDTwt9xvmcoS8CcDjFRm7KxKX9jD2tNAIQD7dxA,4822
|
|
309
|
-
agentpool_cli/create.py,sha256=d0m2wnFH09A91Kal1lLOl8hbdpbo58I9X5KsM4zLST0,5922
|
|
310
|
-
agentpool_cli/history.py,sha256=jd846SmfdUn8hIOfF-pYRUwtfnVmnAiXVg1Jn-iYSdQ,7445
|
|
311
|
-
agentpool_cli/log.py,sha256=JEnuiqNWkk7clYmhBFZAN04ZGs6X4JPJtj5Hd4RuGNc,2133
|
|
312
|
-
agentpool_cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
|
-
agentpool_cli/run.py,sha256=Iwn-ZpKl-Y2piO9GrgiZGZxrZQrodyRHB8cPhzqTeok,2934
|
|
314
|
-
agentpool_cli/serve_acp.py,sha256=-pTvO8-e2OUXxBkpLYR2EP9b9rbRNFJa879U2r7KdAo,6099
|
|
315
|
-
agentpool_cli/serve_api.py,sha256=0F_nU0HIu6SIK-DwTbNH-6Kr0g8LD_GoqFSVCIA8wYQ,2068
|
|
316
|
-
agentpool_cli/serve_mcp.py,sha256=i_G_zB4KJv6xr5fkqtm8Spzvq6e9HDS7BmDdLbDYQu8,2462
|
|
317
|
-
agentpool_cli/serve_vercel.py,sha256=vSOqLYoV9tejSarCc7lKVEqRFQzSntiSQlCcjmxr4b4,8147
|
|
318
|
-
agentpool_cli/store.py,sha256=bjd7MCHQZZHSH0Uh2VvKd60QO88BBZnO7ORSlAdXNmY,5410
|
|
319
|
-
agentpool_cli/task.py,sha256=ABKyNlGx3Pr3T8uyGZvajsCBHf1n9xY5Reh9uLI8hsw,2369
|
|
320
|
-
agentpool_cli/utils.py,sha256=Ac6nO4y31oPPSoZ6WraCGqtDjHQI8C1jlrfxbjPmVRE,3179
|
|
321
|
-
agentpool_cli/watch.py,sha256=_8dGPnGWUK24VPAvBzUg4pYED2FE2tvsyrCx-9EfAvs,1679
|
|
322
|
-
agentpool_commands/__init__.py,sha256=ZDgamnY6VWDiURueRE3kZMcJhWQPylck0TM80QPHJxI,6486
|
|
323
|
-
agentpool_commands/agents.py,sha256=nYRRsVRkvtRQ8ibhuNK2T-gZcsYmISqOp8q6vIA57YE,6641
|
|
324
|
-
agentpool_commands/base.py,sha256=3SmCor_AnSQxvaUtMZV0QU5QnSbGL9W0LHpMr35RxGQ,1247
|
|
325
|
-
agentpool_commands/commands.py,sha256=sJbyJHFv3WAautmxbWp5x6jEF_y6k5zQb1l3hzGhjeg,1779
|
|
326
|
-
agentpool_commands/completers.py,sha256=MNZBWlgFqCZfzZ7XV22hlk_2fSwTUUN9Qoa8j8HKy2E,3908
|
|
327
|
-
agentpool_commands/connections.py,sha256=WjS87xKl9brBKeOyT0c5VheUgIjBWSIGtHh5vHgEXFU,5407
|
|
328
|
-
agentpool_commands/markdown_utils.py,sha256=iHlIUzIG0SO7iSRrgMrw4VXUDAABiOH6OvX7Husm1QI,809
|
|
329
|
-
agentpool_commands/models.py,sha256=cD9wbERRUrI7JrKznYIhmyNwvunzf_GBE5BTVlfvSdE,1796
|
|
330
|
-
agentpool_commands/prompts.py,sha256=-rRVTPhbWGZgzK7gJ0OrJgs4pLiJXOdK2dENjWdhCnM,2754
|
|
331
|
-
agentpool_commands/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
|
-
agentpool_commands/read.py,sha256=IcMoOSClj8YrYu3Z07ASdR0FBbXohNDL-rx93tQQJk4,2335
|
|
333
|
-
agentpool_commands/resources.py,sha256=oMLOSCKWutzuGTBZgNCG7ATcG4ezoKk7PHf21axogZA,7310
|
|
334
|
-
agentpool_commands/session.py,sha256=JKWWja52eVcRBsOn8VQxp1qX2Aq6JClvpXRouTb2mkM,1284
|
|
335
|
-
agentpool_commands/tools.py,sha256=6VBESO2-bErzENgg6OUUqUZU9CK7WtWqDk6H9N63Aco,7816
|
|
336
|
-
agentpool_commands/utils.py,sha256=64pdpsPstJkSBZdxE1gmZh3QE06lJ9nqqAM5enXs0pw,6448
|
|
337
|
-
agentpool_commands/workers.py,sha256=pGC-roAqzB9TXFJX_KAlORdpqY_xFxoyjHkvPko2Z3E,5241
|
|
338
|
-
agentpool_config/__init__.py,sha256=pWChmhKERCnyWKSHQ_yqkbhycc5-c8VZ0LaFuVDROuw,1337
|
|
339
|
-
agentpool_config/builtin_tools.py,sha256=MuBIbZU9OcUeOoIv36wGk8N9mGEwoGUxhGSS3Zxmz0w,8462
|
|
340
|
-
agentpool_config/commands.py,sha256=vLcUmHaN3qu8tPI8UTNhn9mQjYsBzx53VLAitR40y5Q,8189
|
|
341
|
-
agentpool_config/conditions.py,sha256=LjqtR8gwOYNwmFJKuy_p9i9pJhjHzLjM_7s_kR4r9oE,10077
|
|
342
|
-
agentpool_config/converters.py,sha256=FlDkzRmrFXW58tjJAoLpn_v2HmXhw89VmRi7qHItEy0,854
|
|
343
|
-
agentpool_config/durable.py,sha256=3LvHDH1Oj98EjQ1xM5WaXPyvfjGY4k-7cHeRBxz7LrE,9385
|
|
344
|
-
agentpool_config/event_handlers.py,sha256=Xti7effxBpSloKscJoNKui7Gzo5yfdF35OH8GlceKgc,17380
|
|
345
|
-
agentpool_config/events.py,sha256=NsDfXzDCztcV_gZkYLbT3-to5mzGoUkpJpSf3sO9iyU,4453
|
|
346
|
-
agentpool_config/forward_targets.py,sha256=uFu7EFr7ej8TxljqG9JU6bv2QMyrLDUtzs_bIUP1ESc,8431
|
|
347
|
-
agentpool_config/hook_conditions.py,sha256=dxDne0u8OZLngW87XdmNHSa1RCGjGvWYNlrRXVtlS8g,9278
|
|
348
|
-
agentpool_config/hooks.py,sha256=U0LnIPH5IiK7YXJ2ABRsQ4ZK1G64VW9LJ9kFPVCrl50,7171
|
|
349
|
-
agentpool_config/jinja.py,sha256=klRcLRvbhnFY4iXG6UeIPS_TcHr2tHw6xSbJdNC98kA,6828
|
|
350
|
-
agentpool_config/knowledge.py,sha256=xdrC3mseRs8iH7DN9Jlvbj_pcmw-GlY0pFmWqY9fDTQ,1384
|
|
351
|
-
agentpool_config/loaders.py,sha256=OFwinzF_i6ek8IVf-_IIXJD_gnt37UGSVsD0wjpcygo,11861
|
|
352
|
-
agentpool_config/mcp_server.py,sha256=4D_1Uvzh3W_MGp_cVy3Jl06Uwod87_r9YsuzoJvWkFg,7819
|
|
353
|
-
agentpool_config/nodes.py,sha256=Af0bhEitZu8R1PIIYwxUa1Dee6l8r89WPoAKVvMT9fE,6062
|
|
354
|
-
agentpool_config/observability.py,sha256=LaPZnXBcTuk9Pso4aTY8YZI2R322fKYDcOQ052HEaCs,6347
|
|
355
|
-
agentpool_config/output_types.py,sha256=D3kuSNzXrn3GCoc_Ej2Hu6_kOqJEWiX675nDFj4t-6g,1822
|
|
356
|
-
agentpool_config/pool_server.py,sha256=mOJwgvAl6BiUazqi8wJTYJ5eJZXE-TgaueHiG9lxzAE,7343
|
|
357
|
-
agentpool_config/prompt_hubs.py,sha256=IMCf_kvg7XlrxLQRzUW5x7GmOFpDleXIGfQT6CTryzc,3329
|
|
358
|
-
agentpool_config/prompts.py,sha256=dPdyVd4w38Q4RVGTEbT0tz7GNGQeTmUd2ru6h-8aqXM,6249
|
|
359
|
-
agentpool_config/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
|
-
agentpool_config/resources.py,sha256=0aP_wbkdRa8Nv4fF2WLAuHG1Fu--PFNYol0DdvqnEB0,948
|
|
361
|
-
agentpool_config/session.py,sha256=a65YO221obbJZ3jvLPsTSdCWOleVCNGU0f1UspbQd7E,3754
|
|
362
|
-
agentpool_config/skills.py,sha256=pUesZyxb8WpYUAPkjF_SCAS2XtaacUrG68vScek-Mt8,279
|
|
363
|
-
agentpool_config/storage.py,sha256=8Hq4itlIYK0p1CnFEPPxGnc1G0XXGKiUX2N_MbWiolc,9708
|
|
364
|
-
agentpool_config/system_prompts.py,sha256=nt7GgFCYpDvYK1gon8-AMk1yX99ipOSxFOiBVo1OlUA,5789
|
|
365
|
-
agentpool_config/task.py,sha256=GBu1TjwTNafzCeSbAS60MnhluwrLz3fuiHGGIG-IW_Y,5209
|
|
366
|
-
agentpool_config/teams.py,sha256=i84mTdLNGfyBXTM-MG4AljFZkHEBT-saTITkpsTrGb0,1546
|
|
367
|
-
agentpool_config/tools.py,sha256=q8EHtnNgx-nKqLG_rsbyiPTW9VKv-8vjzyFtrCxyUXY,3545
|
|
368
|
-
agentpool_config/toolsets.py,sha256=DtVes6tRdJnjawTTR7gDR5DbweSc6J9GKL16JWqRLd4,34059
|
|
369
|
-
agentpool_config/workers.py,sha256=bcAaOLyM7su-aQEe5TU7bKbN_kQyS02GgSUsLDyGanM,2599
|
|
370
|
-
agentpool_prompts/__init__.py,sha256=cW6TB3SK5p0_s6dJGXP8kpJq3EnbgA0E0gk3VfiuHS4,23
|
|
371
|
-
agentpool_prompts/braintrust_hub.py,sha256=CekSCI2IkM9v0BY19dZu4yYPuGrutNkNhTSwhSnriJg,8757
|
|
372
|
-
agentpool_prompts/fabric.py,sha256=5CrfytOzQoi7MQ8bG3cg0Bb-zLfada0RRFC9iUIVIpA,2610
|
|
373
|
-
agentpool_prompts/langfuse_hub.py,sha256=T1moJ4g399chsNJV-N0WBtIYn9kfsooPObIRGUnqYTU,2384
|
|
374
|
-
agentpool_prompts/promptlayer_provider.py,sha256=gxMed4ZdEWFqlip3T-lyNEnY4lSk_Pyt4gGHxWKXOqI,1757
|
|
375
|
-
agentpool_prompts/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
376
|
-
agentpool_server/__init__.py,sha256=Fk6w4fmZFHqL5dntxSuCggHB3lguyueMSlumYYdGYFk,394
|
|
377
|
-
agentpool_server/a2a_server/__init__.py,sha256=KLwg9FOjDyc0B0loeIAm4U3ADPzVz73lBorPcWj8fKU,74
|
|
378
|
-
agentpool_server/a2a_server/a2a_types.py,sha256=XL4cGp7rYI1_sLBnlc0hU6vNNqZtMMyr7Z8JfmRTLDU,727
|
|
379
|
-
agentpool_server/a2a_server/server.py,sha256=XXInjRT1tD8Qqc_H2JKypKvpkj3kZA06l-lfaeUw25Q,6259
|
|
380
|
-
agentpool_server/a2a_server/storage.py,sha256=vMPRmpNR_40SB4hUUoGomzDR8z_BfQU3hva3Zy4oNQ4,2636
|
|
381
|
-
agentpool_server/acp_server/__init__.py,sha256=E_oL_bnCkn2tiL-QEjuZ1hyiANPmtJiCUMGfozvPTFM,636
|
|
382
|
-
agentpool_server/acp_server/acp_agent.py,sha256=bKlCaqYQbz8g2NQlN6DZU30Ce1EKIVtqTWndKSwJnCU,34277
|
|
383
|
-
agentpool_server/acp_server/acp_tools.py,sha256=cgoYO_rAF6JyHEupuM4Zwvli4pI-F7C6LuFWsbWA3qg,1486
|
|
384
|
-
agentpool_server/acp_server/commands/__init__.py,sha256=H1RULVwM52SHbPktV73gSNyjC_whtjMl5DXTLcJutsk,440
|
|
385
|
-
agentpool_server/acp_server/commands/acp_commands.py,sha256=r-2tzNpijE6vJgP5y_QFp6jNBjWmyuvlBZW4wWZpAlY,22089
|
|
386
|
-
agentpool_server/acp_server/commands/debug_commands.py,sha256=YcHZqmmWTmf8h52rmzVBdnNZO-c9lSCZZ0IFGIxEkQA,12741
|
|
387
|
-
agentpool_server/acp_server/commands/docs_commands/__init__.py,sha256=wGcY0vRrWoc-AHRwileJpk_Ok-cI7dMmgTgpFSUBfHk,1004
|
|
388
|
-
agentpool_server/acp_server/commands/docs_commands/fetch_repo.py,sha256=pgIUQbXRD0Xr5H3_dHjwDEdv_ecfpzfC9Fmtz4-1ZtA,6290
|
|
389
|
-
agentpool_server/acp_server/commands/docs_commands/get_schema.py,sha256=-r0iSQWiMele2L1EcKcSVVRLBE9fy8hCViIF75aHX5M,6584
|
|
390
|
-
agentpool_server/acp_server/commands/docs_commands/get_source.py,sha256=xKt_-PjLTAwRpCo9jVlgQIKCCOek39oKc4i0l2npTe4,4090
|
|
391
|
-
agentpool_server/acp_server/commands/docs_commands/git_diff.py,sha256=h3f07LU9GdtmwibGU8grGv1K6CxbkmXVwhVeyNY4v80,4109
|
|
392
|
-
agentpool_server/acp_server/commands/docs_commands/helpers.py,sha256=Wd4CGb_M_MAUBQN16gCHtvqhvLWm_YZMRz0aNdKSnls,904
|
|
393
|
-
agentpool_server/acp_server/commands/docs_commands/url_to_markdown.py,sha256=XJX0_kaQ71dS7PLDahYl4cHdgxyNieuTK5lsVkMVxpw,3291
|
|
394
|
-
agentpool_server/acp_server/commands/spawn.py,sha256=HnDOWF5LAT5nO5I-ILq97zr-3eTBgmUSO9eXFQ2STOA,7766
|
|
395
|
-
agentpool_server/acp_server/converters.py,sha256=vVlZOwkm-vP3Ei2BheO7M-6mVE5vhQIxg4dy09Lo-wk,8291
|
|
396
|
-
agentpool_server/acp_server/input_provider.py,sha256=fvQiXluJnajbhM3993ErY2NZIyqBttUC1AX0wj_BQp8,14584
|
|
397
|
-
agentpool_server/acp_server/server.py,sha256=RXmI4UzFZ3mohjoVMncPjcYJ_p1so_TrNm0cWG7_W8E,10965
|
|
398
|
-
agentpool_server/acp_server/session.py,sha256=NJ4BCbljPI7J2bd9rPwYXD8lhey4ezZc1l7Qyl6eg9E,40950
|
|
399
|
-
agentpool_server/acp_server/session_manager.py,sha256=ns-UPYnk_dN-vq9OWq_K4MTJte6rhTYa1gWcQ420J9s,10923
|
|
400
|
-
agentpool_server/acp_server/syntax_detection.py,sha256=CtYVOUu7lt4i5I34inTmFaJ5gF9UkEM0_M25P_R54wo,6360
|
|
401
|
-
agentpool_server/acp_server/zed_tools.md,sha256=5tpE1-ARtKAeYOcGbvitIUehRAi8-JiR5flNuZ87AEg,3589
|
|
402
|
-
agentpool_server/aggregating_server.py,sha256=oNgTJ4gaWhx1PviQOaryOfjYW6ASTSmbhx9qtqEHQME,10517
|
|
403
|
-
agentpool_server/agui_server/__init__.py,sha256=wIwXvEzaJldCR_pXA6X7IgM9L71qDWmTDdJa4LKkCOM,295
|
|
404
|
-
agentpool_server/agui_server/server.py,sha256=VkNoKFslia1FNxbajPV_Qe68Wy8MtFxxqJjxgyBFjqo,4616
|
|
405
|
-
agentpool_server/base.py,sha256=FR7pQ5i1RkoeEPLVO73FMRWJZPtjX8cWynId4HziSmI,6635
|
|
406
|
-
agentpool_server/http_server.py,sha256=Ls6C9AdYrpUGHbobQdt6gBZLc75N8ECxbqseIbGK62c,4743
|
|
407
|
-
agentpool_server/mcp_server/__init__.py,sha256=FH39HoB5zw2ApHIpjz1_zrCaiynORXQvwZDU6nuHnSg,140
|
|
408
|
-
agentpool_server/mcp_server/server.py,sha256=-OMVlDKPjEGprUNYAgz16hYSF0h8rj7YkiiINVV06zI,12300
|
|
409
|
-
agentpool_server/mcp_server/zed_wrapper.py,sha256=6Vd8im8otxv5qiZU6XaJ5bICmsXxWtLnDxdmtmMnoAA,3435
|
|
410
|
-
agentpool_server/openai_api_server/__init__.py,sha256=YQR67AcmQSPueXzEvTZHzzsJxHqg5zv3aLIfS5-Au7k,118
|
|
411
|
-
agentpool_server/openai_api_server/completions/__init__.py,sha256=bH-MCUwJFJ9dJcHM9TJ7c97_5YJrWGfjOY-QsS95KN4,23
|
|
412
|
-
agentpool_server/openai_api_server/completions/helpers.py,sha256=pWgWiWF7UsLS_2F1co3nEENvZkSNWtBqQ_zVydabkPQ,2784
|
|
413
|
-
agentpool_server/openai_api_server/completions/models.py,sha256=NCgOi1hmde_6SnNxoTKRmdL4yf6sDmdl-YyUlhG5sHM,2101
|
|
414
|
-
agentpool_server/openai_api_server/responses/__init__.py,sha256=4yMHkaCxJEmNODPvTN-TuvNppS82ZJuTRnRH3u8ojW4,21
|
|
415
|
-
agentpool_server/openai_api_server/responses/helpers.py,sha256=uD_12vWBKTMUE8HUqi7EuY6O0LvmqSBI1gHL6fp60U0,2439
|
|
416
|
-
agentpool_server/openai_api_server/responses/models.py,sha256=d_yLcJTT1hsweEc-gfhHxl3a0nzX7IN0SyrAICeq5_w,2550
|
|
417
|
-
agentpool_server/openai_api_server/server.py,sha256=VxfzZkLFNCEXMpl83Rh9EKh2P7EJgmM1kDGeZAGthR0,8845
|
|
418
|
-
agentpool_server/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
419
|
-
agentpool_storage/__init__.py,sha256=U1LiITq34I1Dtwfa97n7t7YMxKkM4HQkwV9M0zirRmc,205
|
|
420
|
-
agentpool_storage/base.py,sha256=hcRoOH77xKohpe5fS2uEp2RimoM3uQwyPoqLwXkh_YU,9394
|
|
421
|
-
agentpool_storage/file_provider.py,sha256=kOnxL3t6uGIVUDECFtpW8baaapRONMCMe2Ro8hBAfQA,12117
|
|
422
|
-
agentpool_storage/formatters.py,sha256=vpPganIW7fgy9rUilRiV5FXASYnW9E2tTrSw4nVUptw,4142
|
|
423
|
-
agentpool_storage/memory_provider.py,sha256=Cwsy3d7LR60uY5ryoiaZ4xnwD8TB0ZIrTxcvR4GziCc,14041
|
|
424
|
-
agentpool_storage/models.py,sha256=vlLO41-F2stAEKhdB09cTfdYWKgpV6gBEvY29fdP_UI,2475
|
|
425
|
-
agentpool_storage/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
426
|
-
agentpool_storage/session_store.py,sha256=oUFAxjlFAvUOLza7uks5gbrbzFOIsoI5V0EE6FIT24g,8453
|
|
427
|
-
agentpool_storage/sql_provider/__init__.py,sha256=HomIlej_kItwI-EZ90lzV5ke0SMIhokBhtAQ-i7PY5c,425
|
|
428
|
-
agentpool_storage/sql_provider/cli.py,sha256=vvaMa5ns_VXRhGdWLfy84RcEXUxIOZJPgwtpUEQWGUs,4004
|
|
429
|
-
agentpool_storage/sql_provider/models.py,sha256=Xo5c4ZX5pLd88xCXxSMFYuiZkwrrRgyJgZhmggkXm0w,7640
|
|
430
|
-
agentpool_storage/sql_provider/queries.py,sha256=rQbZMEXClPLi339f8Src3sYvQtvLqiGhVNodQ0rio5Q,391
|
|
431
|
-
agentpool_storage/sql_provider/sql_provider.py,sha256=L3GhR4foIql6X__uTY7DF8rv-iZk3XamkJ2XDn5DYvk,15887
|
|
432
|
-
agentpool_storage/sql_provider/utils.py,sha256=yTn7ZYQdDkmJ7GD1PGgS42Qcg4gm-g1cEoaAuW276jE,8226
|
|
433
|
-
agentpool_storage/text_log_provider.py,sha256=i4kJshhfznWKzQW0L7Vnip4OCLdhywLobHMmTFat3m0,9316
|
|
434
|
-
agentpool_toolsets/__init__.py,sha256=Pv1VchRHUuu5zY2OBwzDRj3ocPb9K8IHbeYobcxab2w,471
|
|
435
|
-
agentpool_toolsets/builtin/__init__.py,sha256=0SS5Po9Rs51VTwWB5_XgHInRvrNpLdVmUjgiyD8Lvrk,1146
|
|
436
|
-
agentpool_toolsets/builtin/agent_management.py,sha256=OtRSqcvzupKbBdRFAa4nSXskRQA-4MloMz5la5FeWvg,8000
|
|
437
|
-
agentpool_toolsets/builtin/chain.py,sha256=OpWA1xp86p2bFR1LiCU90s3dikeFLWnUiY3IH-7yJ0U,10212
|
|
438
|
-
agentpool_toolsets/builtin/code.py,sha256=KAHPXMYv0hZDgo2JA6pZEzaLk3al2jjdYxho_qK5D8Y,14595
|
|
439
|
-
agentpool_toolsets/builtin/debug.py,sha256=w7Wz6od0YXV_Pem2wN_Xr6a948ExTv06e4aw4yPcn7U,8997
|
|
440
|
-
agentpool_toolsets/builtin/execution_environment.py,sha256=KPmJLeKyJ8TK2a5_Hr1FdxOy_eWL2UOeh_DXHmO9mfc,16083
|
|
441
|
-
agentpool_toolsets/builtin/file_edit/__init__.py,sha256=MDI3hf8bDVMm5JfyrVveemtLTa7Bomue4V_rF6bS1lg,201
|
|
442
|
-
agentpool_toolsets/builtin/file_edit/file_edit.py,sha256=S_woWVncZvS_ppvJUWsfhOoX4eU2bjlUuzUp0WyzqCw,24590
|
|
443
|
-
agentpool_toolsets/builtin/file_edit/fuzzy_matcher/__init__.py,sha256=FTQTajleB9XtaBsj6NDDZY1ZuVTLCsGlZxTau_u9cVo,144
|
|
444
|
-
agentpool_toolsets/builtin/file_edit/fuzzy_matcher/example_usage.py,sha256=8sqRETZazUMQ8N5D5ISSq9kd_yMngSiMQlli4cqeyC8,8776
|
|
445
|
-
agentpool_toolsets/builtin/file_edit/fuzzy_matcher/streaming_fuzzy_matcher.py,sha256=hECDvmTtQDvy41crX_gMuKg_xv_K48Qe-nIzdAqISaI,14956
|
|
446
|
-
agentpool_toolsets/builtin/history.py,sha256=2cyL1onGPj6RUivxXdkYSx1zeslUHjvLF7KCbjSBuTo,1042
|
|
447
|
-
agentpool_toolsets/builtin/integration.py,sha256=XWd3UC3Uh6QSlr853ZTnLfdwE4UH87iJPkJnxCKxEVA,2745
|
|
448
|
-
agentpool_toolsets/builtin/skills.py,sha256=Lxi10BHht7C-yPMC-CMajbIELakzuzpy3XQ8kh8rb4M,2665
|
|
449
|
-
agentpool_toolsets/builtin/subagent_tools.py,sha256=wGcQ_bFv25BGww7XjJOzfTrQjkt8bFrg0foD2Op1b1E,11882
|
|
450
|
-
agentpool_toolsets/builtin/tool_management.py,sha256=d2chg5cO_XtQZTHQMq2FzL9XbHDgXmGUOW26Tnb5Qh4,2635
|
|
451
|
-
agentpool_toolsets/builtin/user_interaction.py,sha256=ZibSpRigT-tp6sZgaKJ_5hNsXRWc8U3yk9I0oZHdQjY,1800
|
|
452
|
-
agentpool_toolsets/builtin/workers.py,sha256=GggWKMHXrzZQbdfWYGyZwzIzjhqwDeodnmnFmKu-Y8k,4629
|
|
453
|
-
agentpool_toolsets/composio_toolset.py,sha256=cJ4Bsa7TdZ33AUZ9rXY8eChEbONLeWQxNy6wcmhjkAY,3101
|
|
454
|
-
agentpool_toolsets/config_creation.py,sha256=0P-sZ9-cAN49qJWPQkL6S-lVwRprvzbTqm28m5HjBjg,6698
|
|
455
|
-
agentpool_toolsets/entry_points.py,sha256=1TZR5gW_c8h4vAdbEPOhNhZINJAR_SpQ3_fHQRYjlRY,1358
|
|
456
|
-
agentpool_toolsets/fsspec_toolset/__init__.py,sha256=hR_03QKR9oCEsmgBT2BjfXZOy66cSdHgekp7hmHMfKE,152
|
|
457
|
-
agentpool_toolsets/fsspec_toolset/diagnostics.py,sha256=MpCYB3gNWiyFDDFO1qFQD__MzIeXULnyIYSyHM-trDA,3828
|
|
458
|
-
agentpool_toolsets/fsspec_toolset/grep.py,sha256=i0_Yu1Ys4vMiK7bqonVcX8RTQhwwjujP1WyVuPW02Uo,13862
|
|
459
|
-
agentpool_toolsets/fsspec_toolset/helpers.py,sha256=mXhF_v9JPW1cMeZ_pI7lQgJCK4kKM64vjVcAMyWJGao,20611
|
|
460
|
-
agentpool_toolsets/fsspec_toolset/streaming_diff_parser.py,sha256=i7EzDDqIgRvvx-fCE46FFh6Chxds-s86pOXNgrZXFu0,8744
|
|
461
|
-
agentpool_toolsets/fsspec_toolset/toolset.py,sha256=fQ_RWqwUPlZr4VfUCAk_ew-m_r29JGKCWpIH6lD4RTs,58718
|
|
462
|
-
agentpool_toolsets/mcp_run_toolset.py,sha256=CjVxynnYlSYUiGsnI3JReKF-qGDYnnVH-VA-aMf491E,1819
|
|
463
|
-
agentpool_toolsets/notifications.py,sha256=akgqMfl5Bv1U3LXNgibogsugqQQfKm4-meVjllHSRnk,5171
|
|
464
|
-
agentpool_toolsets/openapi.py,sha256=QhBEd2S9yFahX_LPE82jUvnh60ipLDAaHcsja8txUZI,4080
|
|
465
|
-
agentpool_toolsets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
466
|
-
agentpool_toolsets/search_toolset.py,sha256=T4wAwOVRCUGcuJ21sEMFcm-FaYf6iryLFRqCa9q5378,6026
|
|
467
|
-
agentpool_toolsets/semantic_memory_toolset.py,sha256=qLO1v0QYhSJTJzABW6RO7oVVM4WK9LkAwktAHo3Ea4U,19596
|
|
468
|
-
agentpool_toolsets/streaming_tools.py,sha256=z7_-E_AtNDCNC9htp7pSQES_19E3tRxQcAIwPETAJn0,8566
|
|
469
|
-
agentpool_toolsets/vfs_toolset.py,sha256=I5TdePKALERXIFPFvug87zGIoNNNVo_V8Va3g8H7CQs,3905
|
|
470
|
-
agentpool-2.1.9.dist-info/licenses/LICENSE,sha256=AteGCH9r177TxxrOFEiOARrastASsf7yW6MQxlAHdwA,1078
|
|
471
|
-
agentpool-2.1.9.dist-info/WHEEL,sha256=ZyFSCYkV2BrxH6-HRVRg3R9Fo7MALzer9KiPYqNxSbo,79
|
|
472
|
-
agentpool-2.1.9.dist-info/entry_points.txt,sha256=AKoyr6iy8lEBbqlkxRMfXuFGtmigwOeK7JDQ08mc8kk,331
|
|
473
|
-
agentpool-2.1.9.dist-info/METADATA,sha256=WaY7N-GzCtZC4hw-AsE2BSK13VKyK_97lFl-Arv36l0,11007
|
|
474
|
-
agentpool-2.1.9.dist-info/RECORD,,
|