agentpool 2.2.2__tar.gz → 2.2.4__tar.gz
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.
- {agentpool-2.2.2 → agentpool-2.2.4}/PKG-INFO +3 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/pyproject.toml +3 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/__init__.py +0 -4
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/acp_requests.py +3 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/agent/implementations/debug_server/debug_server.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/client/implementations/default_client.py +3 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/client/implementations/headless_client.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/connection.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/notifications.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/task/supervisor.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/utils.py +4 -4
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/acp_agent/acp_agent.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/agent.py +163 -90
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/agui_agent/agui_agent.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/agui_agent/helpers.py +3 -4
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/base_agent.py +3 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/claude_code_agent/claude_code_agent.py +37 -25
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/slashed_agent.py +5 -4
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/delegation/base_team.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/delegation/pool.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/conversions.py +34 -12
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/tool_bridge.py +54 -54
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/event_manager.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/messagenode.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/acp_agents/base.py +6 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/acp_agents/mcp_capable.py +5 -5
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/acp_agents/non_mcp.py +12 -4
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/agents.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/manifest.py +3 -3
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/prompts/conversion_manager.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/prompts/prompts.py +5 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/codemode/code_executor.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/codemode/remote_mcp_execution.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/codemode/remote_provider.py +3 -3
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/plan_provider.py +74 -10
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/sessions/__init__.py +2 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/sessions/manager.py +23 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/sessions/models.py +41 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/storage/manager.py +134 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/testing.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/ui/base.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/ui/mock_provider.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/ui/stdlib_provider.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/streams.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/token_breakdown.py +166 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/vfs_registry.py +7 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/serve_acp.py +3 -4
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/utils.py +6 -7
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/converters.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/events.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/nodes.py +1 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/storage.py +46 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/toolsets.py +39 -7
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/acp_agent.py +9 -22
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/docs_commands/fetch_repo.py +10 -10
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/input_provider.py +47 -6
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/session.py +7 -12
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/mcp_server/server.py +3 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/ENDPOINTS.md +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/input_provider.py +2 -3
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/events.py +9 -9
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/app_routes.py +33 -11
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/file_routes.py +182 -3
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/lsp_routes.py +132 -15
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/session_routes.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/server.py +48 -1
- agentpool-2.2.4/src/agentpool_storage/__init__.py +25 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/base.py +84 -0
- agentpool-2.2.4/src/agentpool_storage/claude_provider.py +907 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/file_provider.py +112 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/memory_provider.py +51 -0
- agentpool-2.2.4/src/agentpool_storage/opencode_provider.py +730 -0
- agentpool-2.2.4/src/agentpool_storage/project_store.py +325 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/sql_provider/__init__.py +4 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/sql_provider/models.py +36 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/sql_provider/sql_provider.py +111 -1
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/debug.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/execution_environment.py +2 -2
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/fsspec_toolset/__init__.py +2 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/fsspec_toolset/grep.py +74 -2
- agentpool-2.2.4/src/agentpool_toolsets/fsspec_toolset/image_utils.py +161 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/fsspec_toolset/toolset.py +41 -8
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/mcp_discovery/data/mcp_servers.parquet +0 -0
- agentpool-2.2.2/src/agentpool_storage/__init__.py +0 -9
- {agentpool-2.2.2 → agentpool-2.2.4}/LICENSE +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/README.md +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/README.md +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/__main__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/agent/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/agent/connection.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/agent/implementations/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/agent/implementations/debug_server/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/agent/implementations/debug_server/cli.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/agent/implementations/debug_server/debug.html +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/agent/implementations/testing.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/agent/protocol.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/bridge/README.md +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/bridge/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/bridge/__main__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/bridge/bridge.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/bridge/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/bridge/settings.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/bridge/ws_server.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/bridge/ws_server_cli.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/client/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/client/connection.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/client/implementations/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/client/implementations/noop_client.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/client/protocol.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/exceptions.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/filesystem.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/agent_plan.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/agent_requests.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/agent_responses.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/base.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/capabilities.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/client_requests.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/client_responses.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/common.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/content_blocks.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/mcp.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/messages.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/notifications.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/protocol_stuff.md +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/session_state.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/session_updates.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/slash_commands.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/terminal.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/schema/tool_call.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/stdio.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/task/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/task/debug.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/task/dispatcher.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/task/queue.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/task/sender.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/task/state.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/terminal_handle.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/tool_call_reporter.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/tool_call_state.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/acp/transports.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/__main__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/acp_agent/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/acp_agent/acp_converters.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/acp_agent/client_handler.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/acp_agent/session_state.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/agui_agent/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/agui_agent/agui_converters.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/agui_agent/chunk_transformer.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/agui_agent/event_types.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/architect.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/claude_code_agent/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/claude_code_agent/converters.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/claude_code_agent/history.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/context.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/events/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/events/builtin_handlers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/events/event_emitter.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/events/events.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/events/tts_handlers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/interactions.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/modes.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/sys_prompts.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/tool_call_accumulator.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/agents/tool_wrapping.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/base_provider.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/common_types.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/config_resources/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/config_resources/acp_assistant.yml +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/config_resources/agents.yml +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/config_resources/agents_template.yml +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/config_resources/agui_test.yml +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/config_resources/claude_code_agent.yml +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/config_resources/claude_style_subagent.md +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/config_resources/external_acp_agents.yml +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/config_resources/opencode_style_subagent.md +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/config_resources/tts_test_agents.yml +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/delegation/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/delegation/message_flow_tracker.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/delegation/team.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/delegation/teamrun.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/diagnostics/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/diagnostics/lsp_manager.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/diagnostics/lsp_proxy.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/diagnostics/lsp_proxy_script.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/diagnostics/models.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/docs/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/docs/gen_examples.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/docs/utils.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/functional/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/functional/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/functional/run.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/functional/structure.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/hooks/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/hooks/agent_hooks.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/hooks/base.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/hooks/callable.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/hooks/command.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/hooks/prompt.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/jinja_filters.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/log.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/client.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/constants.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/helpers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/manager.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/message_handler.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/registries/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/registries/official_registry_client.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mcp_server/registries/pulsemcp_client.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/compaction.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/connection_manager.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/context.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/events.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/message_container.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/message_history.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/messages.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/messaging/processing.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/mime_utils.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/acp_agents/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/agui_agents.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/claude_code_agents.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/file_agents.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/models/file_parsing.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/observability/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/observability/observability_registry.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/prompts/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/prompts/base.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/prompts/builtin_provider.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/prompts/convert.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/prompts/manager.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/prompts/parts/zed.md +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/README.md +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/arduino-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/c-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/chatito-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/clojure-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/commonlisp-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/cpp-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/csharp-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/d-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/dart-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/elisp-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/elixir-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/elm-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/gleam-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/go-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/java-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/javascript-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/lua-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/matlab-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/ocaml-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/pony-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/properties-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/python-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/r-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/racket-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/ruby-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/rust-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/solidity-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/swift-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-language-pack/udev-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/README.md +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/c-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/c_sharp-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/cpp-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/dart-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/elisp-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/elixir-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/elm-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/fortran-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/go-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/haskell-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/hcl-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/java-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/javascript-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/julia-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/kotlin-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/matlab-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/ocaml-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/ocaml_interface-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/php-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/python-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/ql-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/ruby-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/rust-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/scala-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/typescript-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/queries/tree-sitter-languages/zig-tags.scm +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/repomap.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/aggregating.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/base.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/codemode/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/codemode/default_prompt.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/codemode/helpers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/codemode/progress_executor.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/codemode/provider.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/filtering.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/mcp_provider.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/pool.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/resource_providers/static.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/running/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/running/decorators.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/running/discovery.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/running/executor.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/running/injection.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/running/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/running/run_nodes.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/server.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/sessions/session.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/sessions/store.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/skills/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/skills/manager.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/skills/registry.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/skills/skill.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/storage/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/storage/serialization.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/talk/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/talk/registry.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/talk/stats.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/talk/talk.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/tasks/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/tasks/exceptions.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/tasks/registry.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/text_templates/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/text_templates/system_prompt.jinja +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/text_templates/tool_call_default.jinja +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/text_templates/tool_call_markdown.jinja +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/text_templates/tool_call_simple.jinja +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/tools/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/tools/base.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/tools/exceptions.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/tools/manager.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/tools/tool_call_info.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/ui/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/baseregistry.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/count_tokens.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/dag.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/file_watcher.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/identifiers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/importing.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/inspection.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/model_capabilities.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/network.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/now.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/parse_time.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/pydantic_ai_helpers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/result_utils.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/signatures.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/subprocess_utils.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool/utils/tasks.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/__main__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/agent.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/cli_types.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/common.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/create.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/history.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/log.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/run.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/serve_agui.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/serve_api.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/serve_mcp.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/serve_opencode.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/serve_vercel.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/store.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/task.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/utils.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_cli/watch.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/agents.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/base.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/commands.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/completers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/connections.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/history.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/markdown_utils.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/mcp.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/models.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/prompts.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/read.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/resources.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/session.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/tools.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_commands/workers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/builtin_tools.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/commands.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/compaction.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/conditions.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/durable.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/event_handlers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/forward_targets.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/hook_conditions.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/hooks.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/jinja.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/knowledge.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/loaders.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/mcp_server.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/observability.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/output_types.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/pool_server.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/prompt_hubs.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/prompts.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/resources.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/session.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/skills.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/system_prompts.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/task.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/teams.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/tools.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_config/workers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_prompts/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_prompts/braintrust_hub.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_prompts/fabric.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_prompts/langfuse_hub.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_prompts/promptlayer_provider.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_prompts/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/a2a_server/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/a2a_server/a2a_types.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/a2a_server/server.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/a2a_server/storage.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/acp_tools.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/acp_commands.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/debug_commands.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/docs_commands/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/docs_commands/get_schema.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/docs_commands/get_source.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/docs_commands/git_diff.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/docs_commands/helpers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/docs_commands/url_to_markdown.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/commands/spawn.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/converters.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/server.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/session_manager.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/syntax_detection.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/acp_server/zed_tools.md +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/aggregating_server.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/agui_server/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/agui_server/server.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/base.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/http_server.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/mcp_server/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/mcp_server/zed_wrapper.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/openai_api_server/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/openai_api_server/completions/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/openai_api_server/completions/helpers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/openai_api_server/completions/models.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/openai_api_server/responses/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/openai_api_server/responses/helpers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/openai_api_server/responses/models.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/openai_api_server/server.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/.rules +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/command_validation.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/converters.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/dependencies.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/agent.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/app.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/base.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/common.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/config.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/file.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/mcp.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/message.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/parts.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/provider.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/pty.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/models/session.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/agent_routes.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/config_routes.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/global_routes.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/message_routes.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/pty_routes.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/routes/tui_routes.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/state.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/opencode_server/time_utils.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_server/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/formatters.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/models.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/session_store.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/sql_provider/cli.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/sql_provider/queries.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/sql_provider/utils.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_storage/text_log_provider.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/chain.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/code.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/file_edit/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/file_edit/file_edit.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/file_edit/fuzzy_matcher/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/file_edit/fuzzy_matcher/example_usage.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/file_edit/fuzzy_matcher/streaming_fuzzy_matcher.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/skills.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/subagent_tools.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/user_interaction.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/builtin/workers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/composio_toolset.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/config_creation.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/entry_points.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/fsspec_toolset/diagnostics.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/fsspec_toolset/helpers.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/fsspec_toolset/streaming_diff_parser.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/mcp_discovery/__init__.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/mcp_discovery/toolset.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/mcp_run_toolset.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/notifications.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/openapi.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/py.typed +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/search_toolset.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/semantic_memory_toolset.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/streaming_tools.py +0 -0
- {agentpool-2.2.2 → agentpool-2.2.4}/src/agentpool_toolsets/vfs_toolset.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentpool
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.4
|
|
4
4
|
Summary: Pydantic-AI based Multi-Agent Framework with YAML-based Agents, Teams, Workflows & Extended ACP / AGUI integration
|
|
5
5
|
Keywords:
|
|
6
6
|
Author: Philipp Temminghoff
|
|
@@ -37,6 +37,7 @@ Requires-Dist: jinjarope
|
|
|
37
37
|
Requires-Dist: llmling-models>=1.4.1
|
|
38
38
|
Requires-Dist: logfire
|
|
39
39
|
Requires-Dist: mcp>=1.2.0
|
|
40
|
+
Requires-Dist: pillow>=11.3.0
|
|
40
41
|
Requires-Dist: platformdirs
|
|
41
42
|
Requires-Dist: promptantic>=0.4.5
|
|
42
43
|
Requires-Dist: psygnal>=0.11.1
|
|
@@ -64,7 +65,7 @@ Requires-Dist: ag-ui-protocol>=0.1.10 ; extra == 'ag-ui'
|
|
|
64
65
|
Requires-Dist: braintrust ; extra == 'braintrust'
|
|
65
66
|
Requires-Dist: autoevals ; extra == 'braintrust'
|
|
66
67
|
Requires-Dist: claude-agent-sdk>=0.1.18 ; extra == 'claude'
|
|
67
|
-
Requires-Dist:
|
|
68
|
+
Requires-Dist: copykitten ; extra == 'clipboard'
|
|
68
69
|
Requires-Dist: rustworkx>=0.17.1 ; extra == 'coding'
|
|
69
70
|
Requires-Dist: grep-ast ; extra == 'coding'
|
|
70
71
|
Requires-Dist: ast-grep-py>=0.40.0 ; extra == 'coding'
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[project]
|
|
4
4
|
name = "agentpool"
|
|
5
|
-
version = "2.2.
|
|
5
|
+
version = "2.2.4"
|
|
6
6
|
description = "Pydantic-AI based Multi-Agent Framework with YAML-based Agents, Teams, Workflows & Extended ACP / AGUI integration"
|
|
7
7
|
readme = "README.md"
|
|
8
8
|
requires-python = ">=3.13"
|
|
@@ -45,6 +45,7 @@ dependencies = [
|
|
|
45
45
|
"llmling-models>=1.4.1",
|
|
46
46
|
"logfire",
|
|
47
47
|
"mcp>=1.2.0",
|
|
48
|
+
"pillow>=11.3.0",
|
|
48
49
|
"platformdirs",
|
|
49
50
|
"promptantic>=0.4.5",
|
|
50
51
|
"psygnal>=0.11.1",
|
|
@@ -96,7 +97,7 @@ a2a = ["fasta2a", "starlette"] # A2A Server
|
|
|
96
97
|
ag-ui = ["ag-ui-protocol>=0.1.10"] # Ag-UI Agents
|
|
97
98
|
braintrust = ["braintrust", "autoevals"] # Braintrust Prompt Hub
|
|
98
99
|
claude = ["claude-agent-sdk>=0.1.18"]
|
|
99
|
-
clipboard = ["
|
|
100
|
+
clipboard = ["copykitten"] # Clipboard functionality
|
|
100
101
|
coding = [
|
|
101
102
|
"rustworkx>=0.17.1",
|
|
102
103
|
"grep-ast",
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
from acp.client import DefaultACPClient, HeadlessACPClient, NoOpClient, ClientSideConnection
|
|
4
4
|
from acp.agent import AgentSideConnection
|
|
5
5
|
from acp.bridge import ACPBridge, BridgeSettings
|
|
6
|
-
from acp.filesystem import ACPFileSystem, ACPPath
|
|
7
6
|
from acp.agent.protocol import Agent
|
|
8
7
|
from acp.client.protocol import Client
|
|
9
8
|
from acp.terminal_handle import TerminalHandle
|
|
@@ -173,9 +172,6 @@ __all__ = [ # noqa: RUF022
|
|
|
173
172
|
"FileSystemCapability",
|
|
174
173
|
# stdio helper
|
|
175
174
|
"stdio_streams",
|
|
176
|
-
# filesystem
|
|
177
|
-
"ACPFileSystem",
|
|
178
|
-
"ACPPath",
|
|
179
175
|
# transport
|
|
180
176
|
"serve",
|
|
181
177
|
"StdioTransport",
|
|
@@ -5,6 +5,8 @@ from __future__ import annotations
|
|
|
5
5
|
import asyncio
|
|
6
6
|
from typing import TYPE_CHECKING
|
|
7
7
|
|
|
8
|
+
import structlog
|
|
9
|
+
|
|
8
10
|
from acp.schema import (
|
|
9
11
|
CreateTerminalRequest,
|
|
10
12
|
EnvVariable,
|
|
@@ -19,7 +21,6 @@ from acp.schema import (
|
|
|
19
21
|
WriteTextFileRequest,
|
|
20
22
|
)
|
|
21
23
|
from acp.terminal_handle import TerminalHandle
|
|
22
|
-
from agentpool.log import get_logger
|
|
23
24
|
|
|
24
25
|
|
|
25
26
|
if TYPE_CHECKING:
|
|
@@ -30,7 +31,7 @@ if TYPE_CHECKING:
|
|
|
30
31
|
WaitForTerminalExitResponse,
|
|
31
32
|
)
|
|
32
33
|
|
|
33
|
-
logger = get_logger(__name__)
|
|
34
|
+
logger = structlog.get_logger(__name__)
|
|
34
35
|
|
|
35
36
|
|
|
36
37
|
RULES_FILE_NAMES = [
|
{agentpool-2.2.2 → agentpool-2.2.4}/src/acp/agent/implementations/debug_server/debug_server.py
RENAMED
|
@@ -25,6 +25,7 @@ import anyio
|
|
|
25
25
|
from fastapi import FastAPI, HTTPException
|
|
26
26
|
from fastapi.responses import HTMLResponse
|
|
27
27
|
from pydantic import BaseModel, Field
|
|
28
|
+
import structlog
|
|
28
29
|
import uvicorn
|
|
29
30
|
|
|
30
31
|
from acp import AgentSideConnection
|
|
@@ -57,7 +58,6 @@ from acp.schema import (
|
|
|
57
58
|
WriteTextFileResponse,
|
|
58
59
|
)
|
|
59
60
|
from acp.stdio import stdio_streams
|
|
60
|
-
from agentpool.log import get_logger
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
if TYPE_CHECKING:
|
|
@@ -81,7 +81,7 @@ if TYPE_CHECKING:
|
|
|
81
81
|
)
|
|
82
82
|
|
|
83
83
|
|
|
84
|
-
logger = get_logger(__name__)
|
|
84
|
+
logger = structlog.get_logger(__name__)
|
|
85
85
|
MOCK_FILE = """\
|
|
86
86
|
# Mock file: {path}
|
|
87
87
|
# Generated by ACP Debug Server
|
|
@@ -9,9 +9,10 @@ from __future__ import annotations
|
|
|
9
9
|
from pathlib import Path
|
|
10
10
|
from typing import TYPE_CHECKING, Any
|
|
11
11
|
|
|
12
|
+
import structlog
|
|
13
|
+
|
|
12
14
|
from acp.client import Client
|
|
13
15
|
from acp.schema import ReadTextFileResponse, RequestPermissionResponse, WriteTextFileResponse
|
|
14
|
-
from agentpool import log
|
|
15
16
|
|
|
16
17
|
|
|
17
18
|
if TYPE_CHECKING:
|
|
@@ -34,7 +35,7 @@ if TYPE_CHECKING:
|
|
|
34
35
|
WriteTextFileRequest,
|
|
35
36
|
)
|
|
36
37
|
|
|
37
|
-
logger =
|
|
38
|
+
logger = structlog.get_logger(__name__)
|
|
38
39
|
|
|
39
40
|
|
|
40
41
|
class DefaultACPClient(Client):
|
|
@@ -12,6 +12,7 @@ from typing import TYPE_CHECKING, Any
|
|
|
12
12
|
import uuid
|
|
13
13
|
|
|
14
14
|
from anyenv import ProcessManager
|
|
15
|
+
import structlog
|
|
15
16
|
|
|
16
17
|
from acp.client.protocol import Client
|
|
17
18
|
from acp.schema import (
|
|
@@ -24,7 +25,6 @@ from acp.schema import (
|
|
|
24
25
|
WaitForTerminalExitResponse,
|
|
25
26
|
WriteTextFileResponse,
|
|
26
27
|
)
|
|
27
|
-
from agentpool.log import get_logger
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
if TYPE_CHECKING:
|
|
@@ -40,7 +40,7 @@ if TYPE_CHECKING:
|
|
|
40
40
|
WriteTextFileRequest,
|
|
41
41
|
)
|
|
42
42
|
|
|
43
|
-
logger = get_logger(__name__)
|
|
43
|
+
logger = structlog.get_logger(__name__)
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
class HeadlessACPClient(Client):
|
|
@@ -15,6 +15,7 @@ import anyenv
|
|
|
15
15
|
import anyio
|
|
16
16
|
from anyio.streams.text import TextReceiveStream
|
|
17
17
|
from pydantic import BaseModel, ValidationError
|
|
18
|
+
import structlog
|
|
18
19
|
|
|
19
20
|
from acp.exceptions import RequestError
|
|
20
21
|
from acp.task import (
|
|
@@ -31,7 +32,6 @@ from acp.task import (
|
|
|
31
32
|
RpcTaskKind,
|
|
32
33
|
TaskSupervisor,
|
|
33
34
|
)
|
|
34
|
-
from agentpool import log
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
if TYPE_CHECKING:
|
|
@@ -49,7 +49,7 @@ DispatcherFactory = Callable[
|
|
|
49
49
|
]
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
logger =
|
|
52
|
+
logger = structlog.get_logger(__name__)
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
StreamDirection = Literal["incoming", "outgoing"]
|
|
@@ -6,6 +6,7 @@ from collections.abc import Sequence
|
|
|
6
6
|
from typing import TYPE_CHECKING, Any, assert_never
|
|
7
7
|
|
|
8
8
|
from pydantic_ai import ModelRequest, ModelResponse, ToolReturnPart, UserPromptPart
|
|
9
|
+
import structlog
|
|
9
10
|
|
|
10
11
|
from acp.schema import (
|
|
11
12
|
AgentMessageChunk,
|
|
@@ -33,7 +34,6 @@ from acp.schema import (
|
|
|
33
34
|
from acp.schema.tool_call import ToolCallLocation
|
|
34
35
|
from acp.tool_call_reporter import ToolCallReporter
|
|
35
36
|
from acp.utils import generate_tool_title, infer_tool_kind, to_acp_content_blocks
|
|
36
|
-
from agentpool.log import get_logger
|
|
37
37
|
from agentpool.utils.pydantic_ai_helpers import safe_args_as_dict
|
|
38
38
|
|
|
39
39
|
|
|
@@ -53,7 +53,7 @@ if TYPE_CHECKING:
|
|
|
53
53
|
|
|
54
54
|
ContentType = Sequence[ToolCallContent | str]
|
|
55
55
|
|
|
56
|
-
logger = get_logger(__name__)
|
|
56
|
+
logger = structlog.get_logger(__name__)
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
class ACPNotifications:
|
|
@@ -7,7 +7,7 @@ from collections.abc import Callable
|
|
|
7
7
|
from contextlib import suppress
|
|
8
8
|
from typing import TYPE_CHECKING, Any
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
import structlog
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
if TYPE_CHECKING:
|
|
@@ -16,7 +16,7 @@ if TYPE_CHECKING:
|
|
|
16
16
|
|
|
17
17
|
__all__ = ["TaskSupervisor"]
|
|
18
18
|
|
|
19
|
-
logger =
|
|
19
|
+
logger = structlog.get_logger(__name__)
|
|
20
20
|
ErrorHandler = Callable[[asyncio.Task[Any], BaseException], None]
|
|
21
21
|
|
|
22
22
|
|
|
@@ -6,6 +6,7 @@ import base64
|
|
|
6
6
|
from typing import TYPE_CHECKING, Any
|
|
7
7
|
|
|
8
8
|
from pydantic_ai import BinaryContent, FileUrl, ToolReturn
|
|
9
|
+
import structlog
|
|
9
10
|
|
|
10
11
|
from acp.schema import (
|
|
11
12
|
AudioContentBlock,
|
|
@@ -16,7 +17,6 @@ from acp.schema import (
|
|
|
16
17
|
ResourceContentBlock,
|
|
17
18
|
TextContentBlock,
|
|
18
19
|
)
|
|
19
|
-
from agentpool.log import get_logger
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
if TYPE_CHECKING:
|
|
@@ -27,7 +27,7 @@ if TYPE_CHECKING:
|
|
|
27
27
|
from acp.schema import ContentBlock, ToolCallKind
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
logger = get_logger(__name__)
|
|
30
|
+
logger = structlog.get_logger(__name__)
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
DEFAULT_PERMISSION_OPTIONS = [
|
|
@@ -131,7 +131,7 @@ def generate_tool_title(tool_name: str, tool_input: dict[str, Any]) -> str: # n
|
|
|
131
131
|
return f"Editing: {path}"
|
|
132
132
|
|
|
133
133
|
# Command/script execution - show the command
|
|
134
|
-
if any(k in name_lower for k in ["command", "execute", "run", "shell", "script"]) and (
|
|
134
|
+
if any(k in name_lower for k in ["command", "execute", "run", "shell", "script", "bash"]) and (
|
|
135
135
|
cmd := tool_input.get("command")
|
|
136
136
|
):
|
|
137
137
|
# Truncate long commands
|
|
@@ -244,7 +244,7 @@ def infer_tool_kind(tool_name: str) -> ToolCallKind: # noqa: PLR0911
|
|
|
244
244
|
return "move"
|
|
245
245
|
if any(i in name_lower for i in ["search", "find", "query", "lookup"]):
|
|
246
246
|
return "search"
|
|
247
|
-
if any(i in name_lower for i in ["execute", "run", "exec", "command", "shell"]):
|
|
247
|
+
if any(i in name_lower for i in ["execute", "run", "exec", "command", "shell", "bash"]):
|
|
248
248
|
return "execute"
|
|
249
249
|
if any(i in name_lower for i in ["think", "plan", "reason", "analyze"]):
|
|
250
250
|
return "think"
|
|
@@ -68,7 +68,7 @@ if TYPE_CHECKING:
|
|
|
68
68
|
from types import TracebackType
|
|
69
69
|
|
|
70
70
|
from anyio.abc import Process
|
|
71
|
-
from
|
|
71
|
+
from evented_config import EventConfig
|
|
72
72
|
from exxec import ExecutionEnvironment
|
|
73
73
|
from pydantic_ai import FinishReason
|
|
74
74
|
from slashed import BaseCommand
|
|
@@ -12,27 +12,28 @@ from uuid import uuid4
|
|
|
12
12
|
|
|
13
13
|
from anyenv import method_spawner
|
|
14
14
|
import anyio
|
|
15
|
-
from llmling_models import function_to_model, infer_model
|
|
16
15
|
import logfire
|
|
17
16
|
from psygnal import Signal
|
|
18
17
|
from pydantic import ValidationError
|
|
19
18
|
from pydantic._internal import _typing_extra
|
|
20
19
|
from pydantic_ai import (
|
|
21
20
|
Agent as PydanticAgent,
|
|
22
|
-
AgentRunResultEvent,
|
|
23
21
|
BaseToolCallPart,
|
|
22
|
+
CallToolsNode,
|
|
24
23
|
FunctionToolCallEvent,
|
|
25
24
|
FunctionToolResultEvent,
|
|
26
|
-
|
|
25
|
+
ModelRequestNode,
|
|
27
26
|
PartStartEvent,
|
|
28
27
|
RunContext,
|
|
29
|
-
TextPart,
|
|
30
|
-
TextPartDelta,
|
|
31
28
|
ToolReturnPart,
|
|
32
29
|
)
|
|
33
30
|
|
|
34
31
|
from agentpool.agents.base_agent import BaseAgent
|
|
35
|
-
from agentpool.agents.events import
|
|
32
|
+
from agentpool.agents.events import (
|
|
33
|
+
RunStartedEvent,
|
|
34
|
+
StreamCompleteEvent,
|
|
35
|
+
ToolCallCompleteEvent,
|
|
36
|
+
)
|
|
36
37
|
from agentpool.agents.modes import ModeInfo
|
|
37
38
|
from agentpool.log import get_logger
|
|
38
39
|
from agentpool.messaging import ChatMessage, MessageHistory, MessageNode
|
|
@@ -51,6 +52,34 @@ from agentpool.utils.streams import FileTracker, merge_queue_into_iterator
|
|
|
51
52
|
TResult = TypeVar("TResult")
|
|
52
53
|
|
|
53
54
|
|
|
55
|
+
def _extract_text_from_messages(
|
|
56
|
+
messages: list[Any], include_interruption_note: bool = False
|
|
57
|
+
) -> str:
|
|
58
|
+
"""Extract text content from pydantic-ai messages.
|
|
59
|
+
|
|
60
|
+
Args:
|
|
61
|
+
messages: List of ModelRequest/ModelResponse messages
|
|
62
|
+
include_interruption_note: Whether to append interruption notice
|
|
63
|
+
|
|
64
|
+
Returns:
|
|
65
|
+
Concatenated text content from all ModelResponse TextParts
|
|
66
|
+
"""
|
|
67
|
+
from pydantic_ai.messages import ModelResponse, TextPart as PydanticTextPart
|
|
68
|
+
|
|
69
|
+
content = "".join(
|
|
70
|
+
part.content
|
|
71
|
+
for msg in messages
|
|
72
|
+
if isinstance(msg, ModelResponse)
|
|
73
|
+
for part in msg.parts
|
|
74
|
+
if isinstance(part, PydanticTextPart)
|
|
75
|
+
)
|
|
76
|
+
if include_interruption_note:
|
|
77
|
+
if content:
|
|
78
|
+
content += "\n\n"
|
|
79
|
+
content += "[Request interrupted by user]"
|
|
80
|
+
return content
|
|
81
|
+
|
|
82
|
+
|
|
54
83
|
if TYPE_CHECKING:
|
|
55
84
|
from collections.abc import AsyncIterator, Coroutine, Sequence
|
|
56
85
|
from datetime import datetime
|
|
@@ -225,6 +254,8 @@ class Agent[TDeps = None, OutputDataT = str](BaseAgent[TDeps, OutputDataT]):
|
|
|
225
254
|
Defaults to ["models.dev"] if not specified.
|
|
226
255
|
commands: Slash commands
|
|
227
256
|
"""
|
|
257
|
+
from llmling_models import infer_model
|
|
258
|
+
|
|
228
259
|
from agentpool.agents.interactions import Interactions
|
|
229
260
|
from agentpool.agents.sys_prompts import SystemPrompts
|
|
230
261
|
from agentpool.models.agents import NativeAgentConfig
|
|
@@ -438,6 +469,8 @@ class Agent[TDeps = None, OutputDataT = str](BaseAgent[TDeps, OutputDataT]):
|
|
|
438
469
|
name: Optional name for the agent
|
|
439
470
|
kwargs: Additional arguments for agent
|
|
440
471
|
"""
|
|
472
|
+
from llmling_models import function_to_model
|
|
473
|
+
|
|
441
474
|
name = name or callback.__name__ or "processor"
|
|
442
475
|
model = function_to_model(callback)
|
|
443
476
|
return_type = _typing_extra.get_function_type_hints(callback).get("return")
|
|
@@ -580,6 +613,8 @@ class Agent[TDeps = None, OutputDataT = str](BaseAgent[TDeps, OutputDataT]):
|
|
|
580
613
|
"""Create pydantic-ai agent from current state."""
|
|
581
614
|
# Monkey patch pydantic-ai to recognize AgentContext
|
|
582
615
|
|
|
616
|
+
from llmling_models import infer_model
|
|
617
|
+
|
|
583
618
|
from agentpool.agents.tool_wrapping import wrap_tool
|
|
584
619
|
|
|
585
620
|
tools = await self.tools.get_tools(state="enabled", names=tool_choice)
|
|
@@ -792,9 +827,6 @@ class Agent[TDeps = None, OutputDataT = str](BaseAgent[TDeps, OutputDataT]):
|
|
|
792
827
|
self._cancelled = False
|
|
793
828
|
self._current_stream_task = asyncio.current_task()
|
|
794
829
|
|
|
795
|
-
# Track accumulated content for partial message on cancellation
|
|
796
|
-
accumulated_text: list[str] = []
|
|
797
|
-
|
|
798
830
|
# Execute pre-run hooks
|
|
799
831
|
if self.hooks:
|
|
800
832
|
pre_run_result = await self.hooks.run_pre_run_hooks(
|
|
@@ -815,6 +847,8 @@ class Agent[TDeps = None, OutputDataT = str](BaseAgent[TDeps, OutputDataT]):
|
|
|
815
847
|
await handler(None, run_started)
|
|
816
848
|
yield run_started
|
|
817
849
|
try:
|
|
850
|
+
from pydantic_graph import End
|
|
851
|
+
|
|
818
852
|
agentlet = await self.get_agentlet(tool_choice, model, output_type, input_provider)
|
|
819
853
|
content = await convert_prompts(prompts)
|
|
820
854
|
response_msg: ChatMessage[Any] | None = None
|
|
@@ -823,104 +857,104 @@ class Agent[TDeps = None, OutputDataT = str](BaseAgent[TDeps, OutputDataT]):
|
|
|
823
857
|
|
|
824
858
|
# Use provided usage_limits or fall back to default
|
|
825
859
|
effective_limits = usage_limits or self._default_usage_limits
|
|
860
|
+
history = [m for run in history_list for m in run.to_pydantic_ai()]
|
|
826
861
|
|
|
827
|
-
|
|
862
|
+
# Track tool call starts to combine with results later
|
|
863
|
+
pending_tcs: dict[str, BaseToolCallPart] = {}
|
|
864
|
+
file_tracker = FileTracker()
|
|
865
|
+
|
|
866
|
+
async with agentlet.iter(
|
|
828
867
|
converted,
|
|
829
868
|
deps=deps, # type: ignore[arg-type]
|
|
830
|
-
message_history=
|
|
869
|
+
message_history=history,
|
|
831
870
|
usage_limits=effective_limits,
|
|
832
871
|
instructions=instructions,
|
|
833
|
-
)
|
|
834
|
-
|
|
835
|
-
# Stream events through merge_queue for progress events
|
|
836
|
-
file_tracker = FileTracker()
|
|
837
|
-
async with merge_queue_into_iterator(stream_events, self._event_queue) as events:
|
|
838
|
-
# Track tool call starts to combine with results later
|
|
839
|
-
pending_tcs: dict[str, BaseToolCallPart] = {}
|
|
872
|
+
) as agent_run:
|
|
840
873
|
try:
|
|
841
|
-
async for
|
|
842
|
-
# Check for cancellation
|
|
874
|
+
async for node in agent_run:
|
|
843
875
|
if self._cancelled:
|
|
844
876
|
self.log.info("Stream cancelled by user")
|
|
845
877
|
break
|
|
878
|
+
if isinstance(node, End):
|
|
879
|
+
break
|
|
846
880
|
|
|
847
|
-
#
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
881
|
+
# Stream events from model request node
|
|
882
|
+
if isinstance(node, ModelRequestNode):
|
|
883
|
+
async with (
|
|
884
|
+
node.stream(agent_run.ctx) as agent_stream,
|
|
885
|
+
merge_queue_into_iterator(
|
|
886
|
+
agent_stream, # type: ignore[arg-type]
|
|
887
|
+
self._event_queue,
|
|
888
|
+
) as merged,
|
|
889
|
+
):
|
|
890
|
+
async for event in file_tracker.track(merged):
|
|
891
|
+
if self._cancelled:
|
|
892
|
+
break
|
|
893
|
+
await handler(None, event)
|
|
894
|
+
yield event
|
|
895
|
+
combined = self._process_tool_event(
|
|
896
|
+
event, pending_tcs, message_id
|
|
897
|
+
)
|
|
898
|
+
if combined:
|
|
899
|
+
await handler(None, combined)
|
|
900
|
+
yield combined
|
|
901
|
+
|
|
902
|
+
# Stream events from tool call node
|
|
903
|
+
elif isinstance(node, CallToolsNode):
|
|
904
|
+
async with (
|
|
905
|
+
node.stream(agent_run.ctx) as tool_stream,
|
|
906
|
+
merge_queue_into_iterator(tool_stream, self._event_queue) as merged,
|
|
862
907
|
):
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
tool_name=call_info.tool_name,
|
|
871
|
-
tool_call_id=call_id,
|
|
872
|
-
tool_input=safe_args_as_dict(call_info),
|
|
873
|
-
tool_result=result_event.result.content
|
|
874
|
-
if isinstance(result_event.result, ToolReturnPart)
|
|
875
|
-
else result_event.result,
|
|
876
|
-
agent_name=self.name,
|
|
877
|
-
message_id=message_id,
|
|
908
|
+
async for event in file_tracker.track(merged):
|
|
909
|
+
if self._cancelled:
|
|
910
|
+
break
|
|
911
|
+
await handler(None, event)
|
|
912
|
+
yield event
|
|
913
|
+
combined = self._process_tool_event(
|
|
914
|
+
event, pending_tcs, message_id
|
|
878
915
|
)
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
# Capture final result data, Build final response message
|
|
883
|
-
response_time = time.perf_counter() - start_time
|
|
884
|
-
response_msg = await ChatMessage.from_run_result(
|
|
885
|
-
event.result,
|
|
886
|
-
agent_name=self.name,
|
|
887
|
-
message_id=message_id,
|
|
888
|
-
conversation_id=conversation_id or user_msg.conversation_id,
|
|
889
|
-
parent_id=user_msg.message_id,
|
|
890
|
-
response_time=response_time,
|
|
891
|
-
metadata=file_tracker.get_metadata(),
|
|
892
|
-
)
|
|
916
|
+
if combined:
|
|
917
|
+
await handler(None, combined)
|
|
918
|
+
yield combined
|
|
893
919
|
except asyncio.CancelledError:
|
|
894
920
|
self.log.info("Stream cancelled via task cancellation")
|
|
895
921
|
self._cancelled = True
|
|
896
922
|
|
|
897
|
-
|
|
898
|
-
if self._cancelled:
|
|
923
|
+
# Build response message
|
|
899
924
|
response_time = time.perf_counter() - start_time
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
925
|
+
if self._cancelled:
|
|
926
|
+
partial_content = _extract_text_from_messages(
|
|
927
|
+
agent_run.all_messages(), include_interruption_note=True
|
|
928
|
+
)
|
|
929
|
+
response_msg = ChatMessage(
|
|
930
|
+
content=partial_content,
|
|
931
|
+
role="assistant",
|
|
932
|
+
name=self.name,
|
|
933
|
+
message_id=message_id,
|
|
934
|
+
conversation_id=conversation_id or user_msg.conversation_id,
|
|
935
|
+
parent_id=user_msg.message_id,
|
|
936
|
+
response_time=response_time,
|
|
937
|
+
finish_reason="stop",
|
|
938
|
+
)
|
|
939
|
+
complete_event = StreamCompleteEvent(message=response_msg)
|
|
940
|
+
await handler(None, complete_event)
|
|
941
|
+
yield complete_event
|
|
942
|
+
self._current_stream_task = None
|
|
943
|
+
return
|
|
944
|
+
|
|
945
|
+
if agent_run.result:
|
|
946
|
+
response_msg = await ChatMessage.from_run_result(
|
|
947
|
+
agent_run.result,
|
|
948
|
+
agent_name=self.name,
|
|
949
|
+
message_id=message_id,
|
|
950
|
+
conversation_id=conversation_id or user_msg.conversation_id,
|
|
951
|
+
parent_id=user_msg.message_id,
|
|
952
|
+
response_time=response_time,
|
|
953
|
+
metadata=file_tracker.get_metadata(),
|
|
954
|
+
)
|
|
955
|
+
else:
|
|
956
|
+
msg = "Stream completed without producing a result"
|
|
957
|
+
raise RuntimeError(msg) # noqa: TRY301
|
|
924
958
|
|
|
925
959
|
# Execute post-run hooks
|
|
926
960
|
if self.hooks:
|
|
@@ -954,6 +988,41 @@ class Agent[TDeps = None, OutputDataT = str](BaseAgent[TDeps, OutputDataT]):
|
|
|
954
988
|
finally:
|
|
955
989
|
self._current_stream_task = None
|
|
956
990
|
|
|
991
|
+
def _process_tool_event(
|
|
992
|
+
self,
|
|
993
|
+
event: RichAgentStreamEvent[Any],
|
|
994
|
+
pending_tool_calls: dict[str, BaseToolCallPart],
|
|
995
|
+
message_id: str,
|
|
996
|
+
) -> ToolCallCompleteEvent | None:
|
|
997
|
+
"""Process tool-related events and return combined event when complete.
|
|
998
|
+
|
|
999
|
+
Args:
|
|
1000
|
+
event: The streaming event to process
|
|
1001
|
+
pending_tool_calls: Dict tracking in-progress tool calls by ID
|
|
1002
|
+
message_id: Message ID for the combined event
|
|
1003
|
+
|
|
1004
|
+
Returns:
|
|
1005
|
+
ToolCallCompleteEvent if a tool call completed, None otherwise
|
|
1006
|
+
"""
|
|
1007
|
+
match event:
|
|
1008
|
+
case PartStartEvent(part=BaseToolCallPart() as tool_part):
|
|
1009
|
+
pending_tool_calls[tool_part.tool_call_id] = tool_part
|
|
1010
|
+
case FunctionToolCallEvent(part=tool_part):
|
|
1011
|
+
pending_tool_calls[tool_part.tool_call_id] = tool_part
|
|
1012
|
+
case FunctionToolResultEvent(tool_call_id=call_id) as result_event:
|
|
1013
|
+
if call_info := pending_tool_calls.pop(call_id, None):
|
|
1014
|
+
return ToolCallCompleteEvent(
|
|
1015
|
+
tool_name=call_info.tool_name,
|
|
1016
|
+
tool_call_id=call_id,
|
|
1017
|
+
tool_input=safe_args_as_dict(call_info),
|
|
1018
|
+
tool_result=result_event.result.content
|
|
1019
|
+
if isinstance(result_event.result, ToolReturnPart)
|
|
1020
|
+
else result_event.result,
|
|
1021
|
+
agent_name=self.name,
|
|
1022
|
+
message_id=message_id,
|
|
1023
|
+
)
|
|
1024
|
+
return None
|
|
1025
|
+
|
|
957
1026
|
async def run_iter(
|
|
958
1027
|
self,
|
|
959
1028
|
*prompt_groups: Sequence[PromptCompatible],
|
|
@@ -1185,6 +1254,8 @@ class Agent[TDeps = None, OutputDataT = str](BaseAgent[TDeps, OutputDataT]):
|
|
|
1185
1254
|
model: New model to use (name or instance)
|
|
1186
1255
|
|
|
1187
1256
|
"""
|
|
1257
|
+
from llmling_models import infer_model
|
|
1258
|
+
|
|
1188
1259
|
self._model = infer_model(model) if isinstance(model, str) else model
|
|
1189
1260
|
|
|
1190
1261
|
async def set_tool_confirmation_mode(self, mode: ToolConfirmationMode) -> None:
|
|
@@ -1240,6 +1311,8 @@ class Agent[TDeps = None, OutputDataT = str](BaseAgent[TDeps, OutputDataT]):
|
|
|
1240
1311
|
pause_routing: Whether to pause message routing
|
|
1241
1312
|
model: Temporary model override
|
|
1242
1313
|
"""
|
|
1314
|
+
from llmling_models import infer_model
|
|
1315
|
+
|
|
1243
1316
|
old_model = self._model
|
|
1244
1317
|
if output_type:
|
|
1245
1318
|
old_type = self._output_type
|
|
@@ -45,7 +45,7 @@ if TYPE_CHECKING:
|
|
|
45
45
|
from types import TracebackType
|
|
46
46
|
|
|
47
47
|
from ag_ui.core import Message, ToolMessage
|
|
48
|
-
from
|
|
48
|
+
from evented_config import EventConfig
|
|
49
49
|
from slashed import BaseCommand
|
|
50
50
|
from tokonomics.model_discovery.model_info import ModelInfo
|
|
51
51
|
|