geny-executor 2.2.1__tar.gz → 2.3.0__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.
- {geny_executor-2.2.1 → geny_executor-2.3.0}/PKG-INFO +1 -1
- {geny_executor-2.2.1 → geny_executor-2.3.0}/pyproject.toml +1 -1
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/__init__.py +1 -1
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/pipeline.py +18 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/state.py +10 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/events/catalog.py +38 -3
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/__init__.py +11 -1
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/artifact/default/__init__.py +6 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/artifact/default/stage.py +143 -77
- geny_executor-2.3.0/src/geny_executor/stages/s06_api/artifact/default/tool_loop.py +435 -0
- geny_executor-2.3.0/src/geny_executor/stages/s06_api/interface.py +126 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/artifact/default/stage.py +36 -20
- geny_executor-2.3.0/src/geny_executor/stages/s10_tool/dispatcher.py +85 -0
- geny_executor-2.3.0/tests/unit/test_internal_agentic_loop.py +475 -0
- geny_executor-2.2.1/src/geny_executor/stages/s06_api/interface.py +0 -66
- {geny_executor-2.2.1 → geny_executor-2.3.0}/.gitignore +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/LICENSE +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/README.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/README_ko.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/docs/ci/README.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/channels/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/channels/send_message_channel.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/channels/user_file_channel.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/artifact.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/builder.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/config.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/diff.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/environment.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/errors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/introspection.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/manifest_factory.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/mutation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/presets.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/result.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/schema.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/shared_keys.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/slot.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/snapshot.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/core/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/cron/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/cron/runner.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/cron/store_abc.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/cron/store_impl/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/cron/store_impl/file_backed.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/cron/store_impl/in_memory.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/cron/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/events/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/events/bus.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/events/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/history/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/history/ab_test.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/history/cost.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/history/models.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/history/monitor.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/history/replay.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/history/service.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/hooks/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/hooks/config.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/hooks/events.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/hooks/runner.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/_cli_runtime.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/anthropic.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/base.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/claude_code.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/credentials.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/google.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/openai.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/translators/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/translators/_canonical.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/translators/_cli.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/llm_client/vllm.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/_locks.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/_progressive.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/composite/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/composite/handles.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/composite/provider.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/composite/routing.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/composite/snapshot.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/embedding/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/embedding/client.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/embedding/google.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/embedding/local.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/embedding/openai.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/embedding/registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/embedding/voyage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/factory.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/presets.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/provider.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/ephemeral.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/config.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/frontmatter.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/index_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/layout.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/ltm_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/notes_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/provider.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/snapshot.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/stm_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/timezone.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/file/vector_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/config.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/connection.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/index_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/ltm_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/notes_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/provider.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/schema.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/snapshot.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/stm_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/providers/sql/vector_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/retriever.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/memory/strategy.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/notifications/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/notifications/registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/permission/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/permission/loader.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/permission/matrix.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/permission/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/py.typed +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/runtime/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/runtime/task_executors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/runtime/task_runner.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/security/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/security/import_validator.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/security/script_sandbox.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/session/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/session/freshness.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/session/manager.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/session/persistence.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/session/session.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/settings/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/settings/loader.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/settings/section_registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/bundled/batch/SKILL.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/bundled/debug/SKILL.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/bundled/loop/SKILL.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/bundled/lorem-ipsum/SKILL.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/bundled/simplify/SKILL.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/bundled/skillify/SKILL.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/bundled/stuck/SKILL.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/bundled/verify/SKILL.md +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/bundled_skills.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/fork.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/frontmatter.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/loader.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/mcp_bridge.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/path_match.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/shell_blocks.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/skill_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/skills/watcher.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/_helpers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/cancel.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/clear.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/compact.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/config.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/context.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/cost.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/help.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/memory.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/model.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/preset_info.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/status.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/built_in/tasks.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/md_template.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/parser.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/slash_commands/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/artifact/default/normalizers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/artifact/default/validators.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/normalizers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s01_input/validators.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/artifact/default/compactors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/artifact/default/retrievers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/artifact/default/strategies.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/compactors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/retrievers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/strategies.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s02_context/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/artifact/default/builders.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/builders.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/persona/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/persona/builder.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/persona/provider.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s03_system/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s04_guard/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s04_guard/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s04_guard/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s04_guard/artifact/default/guards.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s04_guard/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s04_guard/guards.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s04_guard/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s04_guard/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s04_guard/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s05_cache/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s05_cache/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s05_cache/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s05_cache/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s05_cache/artifact/default/strategies.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s05_cache/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s05_cache/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s05_cache/strategies.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/_translate.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/artifact/default/providers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/artifact/default/retry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/artifact/default/router.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/artifact/google/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/artifact/google/providers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/artifact/openai/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/artifact/openai/providers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/providers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/retry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s06_api/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s07_token/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s07_token/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s07_token/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s07_token/artifact/default/pricing.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s07_token/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s07_token/artifact/default/trackers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s07_token/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s07_token/pricing.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s07_token/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s07_token/trackers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s08_think/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s08_think/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s08_think/artifact/default/budget.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s08_think/artifact/default/processors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s08_think/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s08_think/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s08_think/processors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s08_think/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s08_think/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s09_parse/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s09_parse/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s09_parse/artifact/default/parsers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s09_parse/artifact/default/signals.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s09_parse/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s09_parse/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s09_parse/parsers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s09_parse/signals.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s09_parse/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s09_parse/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/artifact/default/executors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/artifact/default/routers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/executors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/persistence.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/routers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/state_mutation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s10_tool/streaming.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s11_tool_review/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s11_tool_review/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s11_tool_review/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s11_tool_review/artifact/default/reviewers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s11_tool_review/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s11_tool_review/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s12_agent/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s12_agent/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s12_agent/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s12_agent/artifact/default/orchestrators.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s12_agent/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s12_agent/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s12_agent/orchestrators.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s12_agent/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s12_agent/subagent_type.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s12_agent/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s13_task_registry/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s13_task_registry/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s13_task_registry/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s13_task_registry/artifact/default/file_backed_registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s13_task_registry/artifact/default/policies.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s13_task_registry/artifact/default/registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s13_task_registry/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s13_task_registry/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s13_task_registry/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/strategy.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/artifact/default/strategies.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/strategies.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s14_evaluate/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s15_hitl/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s15_hitl/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s15_hitl/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s15_hitl/artifact/default/requesters.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s15_hitl/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s15_hitl/artifact/default/timeouts.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s15_hitl/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s15_hitl/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s16_loop/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s16_loop/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s16_loop/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s16_loop/artifact/default/controllers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s16_loop/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s16_loop/controllers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s16_loop/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s16_loop/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s17_emit/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s17_emit/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s17_emit/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s17_emit/artifact/default/emitters.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s17_emit/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s17_emit/emitters.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s17_emit/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s17_emit/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s17_emit/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/_dehydrate.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/artifact/default/persistence.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/artifact/default/strategies.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/insight.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/persistence.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s18_memory/strategies.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s19_summarize/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s19_summarize/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s19_summarize/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s19_summarize/artifact/default/importance.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s19_summarize/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s19_summarize/artifact/default/summarizers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s19_summarize/frequency_policy.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s19_summarize/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s19_summarize/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s20_persist/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s20_persist/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s20_persist/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s20_persist/artifact/default/frequencies.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s20_persist/artifact/default/persisters.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s20_persist/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s20_persist/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s20_persist/restore.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s20_persist/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s21_yield/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s21_yield/artifact/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s21_yield/artifact/default/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s21_yield/artifact/default/formatters.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s21_yield/artifact/default/multi_format.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s21_yield/artifact/default/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s21_yield/formatters.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s21_yield/interface.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/stages/s21_yield/stage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/adhoc.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/base.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/_path_guard.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/agent_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/ask_user_question_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/bash_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/cron_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/dev_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/edit_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/glob_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/grep_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/mcp_wrapper_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/notebook_edit_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/operator_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/plan_mode_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/push_notification_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/read_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/send_message_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/task_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/todo_write_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/tool_search_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/web_fetch_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/web_search_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/worktree_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/built_in/write_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/composer.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/errors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/mcp/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/mcp/adapter.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/mcp/credentials.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/mcp/errors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/mcp/manager.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/mcp/oauth.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/mcp/state.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/mcp/uri.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/provider.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/providers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/sandbox.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/scope.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/tools/stage_binding.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/workspace/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/workspace/stack.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/src/geny_executor/workspace/types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/_fixtures/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/_fixtures/fake_claude.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/_fixtures/fake_echo_cli.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/_fixtures/geny_manifest_layout.json +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/_fixtures/manifest_entries.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/conftest.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/fixtures/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/fixtures/adapter/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/fixtures/adapter/adapter.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/test_c1_six_layer_retrieval.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/test_c2_execution_recording.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/test_c3_reflection_and_promotion.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/test_c4_rest_coverage.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/test_c5_embedding_migration.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/test_c6_session_resume.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/test_c7_adapter_parity.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/completeness/test_spec_loads.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/memory_provider_contract.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_embedding_clients.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_error_codes_stability.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_embedding_credentials.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_auto_vector.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_composite.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_composite_routing.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_curated_global.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_ephemeral.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_factory.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_file.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_file_layout.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_file_vector.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_sql.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_sql_dialect.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_sql_schema.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_provider_sql_vector.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_memory_vector_breaker.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/contract/test_stage_uniformity.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/integration/test_cycle_ab_cross_import.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/integration/test_integration.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/conformance/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/conformance/harness.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/conformance/test_anthropic.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/conformance/test_claude_code_cli.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/conformance/test_google.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/conformance/test_openai.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/conformance/test_vllm.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/golden/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/golden/cli-2.1.149-json.json +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/golden/cli-2.1.149-json.meta +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/golden/cli-2.1.149-stream.jsonl +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/golden/cli-2.1.149-stream.meta +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/golden/cli-2.1.162-stream.jsonl +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/golden/cli-2.1.162-stream.meta +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/golden/test_golden_replay.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/live/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/live/test_live_canaries.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_anthropic_build_kwargs.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_anthropic_classify.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_base_client.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_claude_code.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_cli_cancellation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_cli_event_forwarding.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_cli_runtime.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_credentials.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_google_classify.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_openai_client.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/llm_client/unit/test_translators_cli_claude_code.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/__init__.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_adaptive_model_router.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_adaptive_router_configure.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_adaptive_thinking_budget.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_adhoc_providers.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_agent_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_api_timeout_kwarg.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_artifact_metadata.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_ask_user_question_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_attach_llm_client_guard.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_binary_classify_manifest.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_built_in_autoregister.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_builtin_capabilities.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_builtin_features.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_cache_prefix_key.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_cancellation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_cli_mcp_passthrough.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_composite_set_hooks.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_concurrent_runs.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_config_liveness.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_cron_runner.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_cron_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_cron_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_dev_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_diff_order_keyed.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_dynamic_persona_builder.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_embedding_error_classification.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_errors_categories.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_evaluation_chain.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_evaluation_chain_configure.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_event_catalog.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_event_channel_unification.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_event_correlation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_external_tool_resolution.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_fork_multi_provider.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_from_manifest_strict_validation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_geny_prod_manifest_repro.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_guard_fail_fast.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_hierarchical_sidecars.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_hook_gate_split.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_hook_in_process.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_hook_runner.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_hook_taxonomy.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_hooks_and_shared_keys.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_host_selections_resolve.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_index_list_categories.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_index_render_vault_map.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_interaction_fields.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_introspection.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_llm_client_base.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_llm_client_capabilities.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_llm_client_registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_llm_client_request_types.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_llm_client_state.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_llm_summary_compactor.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_loop_agnostic_lock.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_manifest_factory.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_manifest_from_dict_hygiene.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_manifest_memory_wiring.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_manifest_provider_validation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_manifest_subagents_memory_sections.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_manifest_v2.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_manifest_v3_migration.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_mcp_annotations_attach.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_mcp_credential_store.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_mcp_fsm.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_mcp_lifecycle.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_mcp_namespace.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_mcp_oauth.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_mcp_prompts_skills_bridge.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_mcp_resource_retriever.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_mcp_uri.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_mcp_wrapper_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_memory_aware_retriever.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_memory_hooks_after_callbacks.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_memory_metadata_extension.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_model_overrides.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_multi_dim_budget_configure.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_multi_dim_budget_controller.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_multi_format_yield.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_multi_provider.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_multimodal.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_note_graph_queries.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_notebook_edit_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_notes_load_pinned.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_operator_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_ordered_emitter_chain.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_permission_matrix.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_permission_mode_promotions.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_permission_posture.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase1_foundation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase1_pipeline.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase2_agent_loop.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase2_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase3_context_memory.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase4_think_agent_evaluate.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase5_emit_presets_mcp.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase5_environment.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase6_history.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase6_integration.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase7_security.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase9a_preset_regen.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_phase9a_scaffolding.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_pipeline_aclose.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_pipeline_attach_runtime.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_pipeline_events_tap.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_pipeline_from_manifest.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_pipeline_hook_lifecycle.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_pipeline_session_runtime.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_plan_mode_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_primary_provider_and_build_reports.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_progressive_disclosure.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_provider_driven_strategy.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_push_notification_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_refresh_backlinks_extension.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_refresh_runtime_and_run_lock.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_resolve_model_config.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_restore_bad_strategy_config.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_reviewer_policy_configure.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_runtime_task_runner.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s06_chunk_forwarding.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s06_provider_selection.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s13_file_backed_registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s13_task_registry_output.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s19_frequency_policy.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s9b1_tool_review.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s9b2_task_registry.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s9b3_hitl.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s9b4_summarize.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s9b5_persist.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s9c1_pipeline_resume.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_s9c2_restore_state.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_send_message_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_settings_loader.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_skill_phase_10_1.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_skill_phase_10_2.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_skill_phase_10_3.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_skill_phase_10_4_bundled.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_skill_phase_10_5_fork.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_skill_phase_10_6_killer.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_skill_phase_10_7_watcher.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_skill_richer_schema.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_skill_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_skills_foundation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_slash_built_in_control.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_slash_built_in_introspection.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_slash_commands.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_slash_md_template.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_stage10_ask_hitl.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_stage10_hook_wiring.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_stage10_partition_executor.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_stage10_permission_matrix.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_stage19_session_summary.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_state_mutation_wiring.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_state_shared_and_local.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_stm_append_event.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_strategy_config_roundtrip.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_streaming_tool_executor.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_structured_output_parser.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_structured_reflection.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_subagent_credential_propagation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_subagent_descriptor.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_subagent_manifest_compile.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_subagent_orchestrator_zero_arg.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_subagent_parallel.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_subagent_pipeline_lifecycle.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_subagent_type_orchestrator.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_task_tools.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_todo_write_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_tool_abc_uplift.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_tool_call_events.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_tool_errors.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_tool_lifecycle_hooks.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_tool_provider.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_tool_result_persistence.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_tool_search_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_tool_stage_max_concurrency.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_turn_boundary_state.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_validate_manifest.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_web_fetch_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_web_search_tool.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_workspace.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_workspace_propagation.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_workspace_tools_integration.py +0 -0
- {geny_executor-2.2.1 → geny_executor-2.3.0}/tests/unit/test_worktree_tools.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: geny-executor
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.3.0
|
|
4
4
|
Summary: Harness-engineered agent pipeline library with 21-stage dual-abstraction architecture, built on the Anthropic API
|
|
5
5
|
Project-URL: Homepage, https://github.com/CocoRoF/geny-executor
|
|
6
6
|
Project-URL: Repository, https://github.com/CocoRoF/geny-executor
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "geny-executor"
|
|
7
|
-
version = "2.
|
|
7
|
+
version = "2.3.0"
|
|
8
8
|
description = "Harness-engineered agent pipeline library with 21-stage dual-abstraction architecture, built on the Anthropic API"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -2654,6 +2654,24 @@ class Pipeline:
|
|
|
2654
2654
|
if provider_name:
|
|
2655
2655
|
state.shared[SharedKeys.PRIMARY_PROVIDER] = provider_name
|
|
2656
2656
|
|
|
2657
|
+
# Tool dispatch handle (2.3.0): Stage 6's tool_loop="internal"
|
|
2658
|
+
# strategy dispatches through Stage 10's exact machinery via
|
|
2659
|
+
# this state-carried handle. Rebuilt every run (two attribute
|
|
2660
|
+
# writes) so a PipelineMutator stage replacement is picked up
|
|
2661
|
+
# at the next turn boundary; None when no Tool stage exists —
|
|
2662
|
+
# the strategy then degrades to pipeline behaviour with a
|
|
2663
|
+
# one-time warning.
|
|
2664
|
+
tool_stage = next(
|
|
2665
|
+
(s for s in self._stages.values() if getattr(s, "name", "") == "tool"),
|
|
2666
|
+
None,
|
|
2667
|
+
)
|
|
2668
|
+
if tool_stage is not None and hasattr(tool_stage, "build_dispatch_context"):
|
|
2669
|
+
from geny_executor.stages.s10_tool.dispatcher import ToolDispatcher
|
|
2670
|
+
|
|
2671
|
+
state.tool_dispatcher = ToolDispatcher(tool_stage)
|
|
2672
|
+
else:
|
|
2673
|
+
state.tool_dispatcher = None
|
|
2674
|
+
|
|
2657
2675
|
self._has_started = True
|
|
2658
2676
|
return state
|
|
2659
2677
|
|
|
@@ -196,6 +196,16 @@ class PipelineState:
|
|
|
196
196
|
pending_tool_calls: List[Dict[str, Any]] = field(default_factory=list)
|
|
197
197
|
tool_results: List[Dict[str, Any]] = field(default_factory=list)
|
|
198
198
|
|
|
199
|
+
# ── Tool dispatch handle (2.3.0) ──
|
|
200
|
+
# Installed by ``Pipeline._init_state`` whenever a Tool stage is
|
|
201
|
+
# registered: a :class:`~geny_executor.stages.s10_tool.dispatcher.
|
|
202
|
+
# ToolDispatcher` wrapping that stage's registry + permission
|
|
203
|
+
# machinery. Consumed by Stage 6's ``tool_loop="internal"`` strategy
|
|
204
|
+
# so internally-resolved tool calls take the EXACT dispatch path
|
|
205
|
+
# Stage 10 would. Lifetime: refreshed every run (sticky across the
|
|
206
|
+
# run only); never serialized.
|
|
207
|
+
tool_dispatcher: Optional[Any] = field(default=None, repr=False, compare=False)
|
|
208
|
+
|
|
199
209
|
# ── Agent orchestration ──
|
|
200
210
|
delegate_requests: List[Dict[str, Any]] = field(default_factory=list)
|
|
201
211
|
agent_results: List[Dict[str, Any]] = field(default_factory=list)
|
|
@@ -47,7 +47,9 @@ from typing import Any, Dict, List
|
|
|
47
47
|
#: Bumped when the catalogue gains members (append-only). Hosts can pin
|
|
48
48
|
#: a minimum version to assert the names they consume exist.
|
|
49
49
|
#: v2: + ``agent.delegations_capped`` (Stage 12 max_delegations wiring).
|
|
50
|
-
|
|
50
|
+
#: v3: + ``api.internal_loop_capped`` (2.3.0 Stage 6 internal agentic
|
|
51
|
+
#: loop hit its turn/budget cap and degraded to the pipeline path).
|
|
52
|
+
EVENT_CATALOG_VERSION = 3
|
|
51
53
|
|
|
52
54
|
|
|
53
55
|
class EventTypes(str, Enum):
|
|
@@ -122,6 +124,12 @@ class EventTypes(str, Enum):
|
|
|
122
124
|
API_INPUT_JSON_DELTA = "api.input_json_delta"
|
|
123
125
|
API_CONTENT_BLOCK_STOP = "api.content_block_stop"
|
|
124
126
|
API_TOOL_RESULT = "api.tool_result"
|
|
127
|
+
# 2.3.0: the Stage 6 internal agentic loop (tool_loop="internal")
|
|
128
|
+
# stopped resolving tool calls because it hit its turn or budget
|
|
129
|
+
# cap; the last response is returned with its tool_use blocks
|
|
130
|
+
# intact so Stage 9/10 pick them up — graceful degradation to the
|
|
131
|
+
# pipeline path, announced rather than silent.
|
|
132
|
+
API_INTERNAL_LOOP_CAPPED = "api.internal_loop_capped"
|
|
125
133
|
|
|
126
134
|
# ── Stage 7: Token ──
|
|
127
135
|
TOKEN_TRACKED = "token.tracked"
|
|
@@ -136,6 +144,14 @@ class EventTypes(str, Enum):
|
|
|
136
144
|
# ── Stage 10: Tool ──
|
|
137
145
|
TOOL_EXECUTE_START = "tool.execute_start"
|
|
138
146
|
TOOL_EXECUTE_COMPLETE = "tool.execute_complete"
|
|
147
|
+
# Per-call timing pair emitted by the executor strategies around each
|
|
148
|
+
# individual dispatch (Stage 10 batches AND Stage 6 internal-loop
|
|
149
|
+
# dispatches — both run through the same executors). Catalogued in
|
|
150
|
+
# 2.3.0: they had always been emitted through the on_event callback,
|
|
151
|
+
# which the AST completeness test cannot see — the indirect-emission
|
|
152
|
+
# blind spot the catalogue's own docstring warns about.
|
|
153
|
+
TOOL_CALL_START = "tool.call_start"
|
|
154
|
+
TOOL_CALL_COMPLETE = "tool.call_complete"
|
|
139
155
|
|
|
140
156
|
# ── Stage 11: Tool review ──
|
|
141
157
|
TOOL_REVIEW_FLAG = "tool_review.flag"
|
|
@@ -383,7 +399,11 @@ PAYLOADS: Dict[EventTypes, Dict[str, str]] = {
|
|
|
383
399
|
"id": "str|None — tool_use block id",
|
|
384
400
|
"name": "str|None — tool name",
|
|
385
401
|
"input": "dict — tool input (may be partial until input_json_delta completes)",
|
|
386
|
-
"source":
|
|
402
|
+
"source": (
|
|
403
|
+
"str — 'cli' (executed inside a CLI backend) | 'api' (Stage 10 "
|
|
404
|
+
"will dispatch) | 'internal' (the Stage 6 internal loop is about "
|
|
405
|
+
"to dispatch it)"
|
|
406
|
+
),
|
|
387
407
|
},
|
|
388
408
|
EventTypes.API_CLI_TOOL_CALL: {
|
|
389
409
|
"id": "str|None",
|
|
@@ -399,7 +419,11 @@ PAYLOADS: Dict[EventTypes, Dict[str, str]] = {
|
|
|
399
419
|
"tool_use_id": "str — id of the tool_use this result answers",
|
|
400
420
|
"content": "Any — tool result content as the backend reported it",
|
|
401
421
|
"is_error": "bool",
|
|
402
|
-
"source": "str — 'cli' | 'api'",
|
|
422
|
+
"source": "str — 'cli' | 'api' | 'internal' (Stage 6 internal loop dispatched it)",
|
|
423
|
+
},
|
|
424
|
+
EventTypes.API_INTERNAL_LOOP_CAPPED: {
|
|
425
|
+
"turns": "int — inner tool turns the loop completed before stopping",
|
|
426
|
+
"reason": "str — 'max_inner_turns' | 'cost_budget'",
|
|
403
427
|
},
|
|
404
428
|
EventTypes.TOKEN_TRACKED: {
|
|
405
429
|
"input_tokens": "int",
|
|
@@ -432,6 +456,17 @@ PAYLOADS: Dict[EventTypes, Dict[str, str]] = {
|
|
|
432
456
|
"count": "int",
|
|
433
457
|
"errors": "int — results flagged is_error",
|
|
434
458
|
},
|
|
459
|
+
EventTypes.TOOL_CALL_START: {
|
|
460
|
+
"tool_use_id": "str",
|
|
461
|
+
"name": "str",
|
|
462
|
+
"input": "dict",
|
|
463
|
+
},
|
|
464
|
+
EventTypes.TOOL_CALL_COMPLETE: {
|
|
465
|
+
"tool_use_id": "str",
|
|
466
|
+
"name": "str",
|
|
467
|
+
"is_error": "bool",
|
|
468
|
+
"duration_ms": "int",
|
|
469
|
+
},
|
|
435
470
|
EventTypes.TOOL_REVIEW_FLAG: {
|
|
436
471
|
"reviewer": "str — ReviewFlag.to_dict()",
|
|
437
472
|
"severity": "str",
|
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
"""Stage 6: API — Anthropic Messages API call."""
|
|
2
2
|
|
|
3
|
-
from geny_executor.stages.s06_api.interface import
|
|
3
|
+
from geny_executor.stages.s06_api.interface import (
|
|
4
|
+
APIProvider,
|
|
5
|
+
ModelRouter,
|
|
6
|
+
RetryStrategy,
|
|
7
|
+
ToolLoopStrategy,
|
|
8
|
+
)
|
|
4
9
|
from geny_executor.stages.s06_api.artifact.default import (
|
|
5
10
|
APIStage,
|
|
6
11
|
AdaptiveModelRouter,
|
|
7
12
|
AnthropicProvider,
|
|
13
|
+
InternalAgenticLoop,
|
|
8
14
|
MockProvider,
|
|
9
15
|
PassthroughRouter,
|
|
16
|
+
PipelineToolLoop,
|
|
10
17
|
RecordingProvider,
|
|
11
18
|
ExponentialBackoffRetry,
|
|
12
19
|
NoRetry,
|
|
@@ -27,6 +34,9 @@ __all__ = [
|
|
|
27
34
|
"ModelRouter",
|
|
28
35
|
"AdaptiveModelRouter",
|
|
29
36
|
"PassthroughRouter",
|
|
37
|
+
"ToolLoopStrategy",
|
|
38
|
+
"PipelineToolLoop",
|
|
39
|
+
"InternalAgenticLoop",
|
|
30
40
|
"APIRequest",
|
|
31
41
|
"APIResponse",
|
|
32
42
|
"ContentBlock",
|
|
@@ -15,6 +15,10 @@ from geny_executor.stages.s06_api.artifact.default.router import (
|
|
|
15
15
|
AdaptiveModelRouter,
|
|
16
16
|
PassthroughRouter,
|
|
17
17
|
)
|
|
18
|
+
from geny_executor.stages.s06_api.artifact.default.tool_loop import (
|
|
19
|
+
InternalAgenticLoop,
|
|
20
|
+
PipelineToolLoop,
|
|
21
|
+
)
|
|
18
22
|
|
|
19
23
|
# Canonical alias
|
|
20
24
|
Stage = APIStage
|
|
@@ -30,4 +34,6 @@ __all__ = [
|
|
|
30
34
|
"RateLimitAwareRetry",
|
|
31
35
|
"AdaptiveModelRouter",
|
|
32
36
|
"PassthroughRouter",
|
|
37
|
+
"InternalAgenticLoop",
|
|
38
|
+
"PipelineToolLoop",
|
|
33
39
|
]
|
|
@@ -26,7 +26,12 @@ from geny_executor.core.stage import Stage
|
|
|
26
26
|
from geny_executor.core.state import PipelineState
|
|
27
27
|
from geny_executor.core.config import ModelConfig
|
|
28
28
|
from geny_executor.llm_client import BaseClient, ClientCapabilities, ClientRegistry
|
|
29
|
-
from geny_executor.stages.s06_api.interface import
|
|
29
|
+
from geny_executor.stages.s06_api.interface import (
|
|
30
|
+
APIProvider,
|
|
31
|
+
ModelRouter,
|
|
32
|
+
RetryStrategy,
|
|
33
|
+
ToolLoopStrategy,
|
|
34
|
+
)
|
|
30
35
|
from geny_executor.stages.s06_api.artifact.default.retry import (
|
|
31
36
|
ExponentialBackoffRetry,
|
|
32
37
|
NoRetry,
|
|
@@ -36,6 +41,11 @@ from geny_executor.stages.s06_api.artifact.default.router import (
|
|
|
36
41
|
AdaptiveModelRouter,
|
|
37
42
|
PassthroughRouter,
|
|
38
43
|
)
|
|
44
|
+
from geny_executor.stages.s06_api.artifact.default.tool_loop import (
|
|
45
|
+
InternalAgenticLoop,
|
|
46
|
+
PipelineToolLoop,
|
|
47
|
+
assistant_content_blocks,
|
|
48
|
+
)
|
|
39
49
|
from geny_executor.stages.s06_api.types import APIRequest, APIResponse
|
|
40
50
|
|
|
41
51
|
|
|
@@ -106,6 +116,7 @@ class APIStage(Stage[Any, APIResponse]):
|
|
|
106
116
|
retry: Optional[RetryStrategy] = None,
|
|
107
117
|
*,
|
|
108
118
|
router: Optional[ModelRouter] = None,
|
|
119
|
+
tool_loop: Optional[ToolLoopStrategy] = None,
|
|
109
120
|
api_key: str = "",
|
|
110
121
|
base_url: Optional[str] = None,
|
|
111
122
|
default_headers: Optional[Dict[str, str]] = None,
|
|
@@ -163,6 +174,23 @@ class APIStage(Stage[Any, APIResponse]):
|
|
|
163
174
|
},
|
|
164
175
|
description="Adaptive model selection per call (passthrough = no override)",
|
|
165
176
|
),
|
|
177
|
+
# 2.3.0: where the agentic tool loop runs. "pipeline" (the
|
|
178
|
+
# default) is the historical shape — one call per pipeline
|
|
179
|
+
# iteration, Stage 9/10/16 own the loop. "internal" resolves
|
|
180
|
+
# tool calls inside this stage, CLI-style. See tool_loop.py.
|
|
181
|
+
"tool_loop": StrategySlot(
|
|
182
|
+
name="tool_loop",
|
|
183
|
+
strategy=tool_loop or PipelineToolLoop(),
|
|
184
|
+
registry={
|
|
185
|
+
"pipeline": PipelineToolLoop,
|
|
186
|
+
"internal": InternalAgenticLoop,
|
|
187
|
+
},
|
|
188
|
+
description=(
|
|
189
|
+
"Where the agentic tool loop runs (pipeline = Stage "
|
|
190
|
+
"9/10/16 round-trips; internal = resolve tool calls "
|
|
191
|
+
"inside this stage, CLI-style)"
|
|
192
|
+
),
|
|
193
|
+
),
|
|
166
194
|
}
|
|
167
195
|
|
|
168
196
|
@property
|
|
@@ -173,6 +201,10 @@ class APIStage(Stage[Any, APIResponse]):
|
|
|
173
201
|
def _router(self) -> ModelRouter:
|
|
174
202
|
return self._slots["router"].strategy # type: ignore[return-value]
|
|
175
203
|
|
|
204
|
+
@property
|
|
205
|
+
def _tool_loop(self) -> ToolLoopStrategy:
|
|
206
|
+
return self._slots["tool_loop"].strategy # type: ignore[return-value]
|
|
207
|
+
|
|
176
208
|
@property
|
|
177
209
|
def name(self) -> str:
|
|
178
210
|
return "api"
|
|
@@ -366,64 +398,81 @@ class APIStage(Stage[Any, APIResponse]):
|
|
|
366
398
|
client = self._resolve_client(state)
|
|
367
399
|
use_stream = self._resolve_stream(state)
|
|
368
400
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
401
|
+
# One retry-wrapped client call, shared with the tool_loop slot
|
|
402
|
+
# (2.3.0). The closure owns the per-call api.request /
|
|
403
|
+
# api.response / api.error event contract so EVERY call — the
|
|
404
|
+
# single pipeline-mode call and each inner call of an internal
|
|
405
|
+
# agentic loop — is individually visible to hosts with its own
|
|
406
|
+
# usage numbers. ``extra_messages`` are loop-local tool
|
|
407
|
+
# exchanges appended after ``state.messages`` for this call
|
|
408
|
+
# only (the internal loop records them onto the state once, at
|
|
409
|
+
# loop end).
|
|
410
|
+
async def call_once(
|
|
411
|
+
extra_messages: Optional[List[Dict[str, Any]]] = None,
|
|
412
|
+
) -> APIResponse:
|
|
413
|
+
state.add_event(
|
|
414
|
+
"api.request",
|
|
415
|
+
{
|
|
416
|
+
"model": cfg.model,
|
|
417
|
+
"provider": getattr(client, "provider", ""),
|
|
418
|
+
"message_count": len(state.messages) + len(extra_messages or []),
|
|
419
|
+
"has_tools": bool(state.tools),
|
|
420
|
+
"has_thinking": cfg.thinking_enabled,
|
|
421
|
+
"stream": use_stream,
|
|
422
|
+
},
|
|
423
|
+
)
|
|
424
|
+
try:
|
|
425
|
+
if use_stream:
|
|
426
|
+
response = await self._call_streaming_with_retry(
|
|
427
|
+
client, cfg, state, extra_messages=extra_messages
|
|
428
|
+
)
|
|
429
|
+
else:
|
|
430
|
+
response = await self._call_with_retry(
|
|
431
|
+
client, cfg, state, extra_messages=extra_messages
|
|
432
|
+
)
|
|
433
|
+
except APIError as e:
|
|
434
|
+
# Structured error envelope (2.2.0, audit §3.2 / Tier 1-1):
|
|
435
|
+
# before this event, a host UI that wanted "auth failed,
|
|
436
|
+
# category fatal, on the CLI backend" had to regex the
|
|
437
|
+
# exception string out of pipeline.error — Geny's
|
|
438
|
+
# llm_patches module existed solely to absorb that. The
|
|
439
|
+
# stable code/category land in the stream BEFORE the
|
|
440
|
+
# exception propagates, so transcripts always carry the
|
|
441
|
+
# classification even when a retry wrapper upstream
|
|
442
|
+
# swallows or rewraps the exception object itself.
|
|
443
|
+
error_payload: Dict[str, Any] = {
|
|
444
|
+
"code": e.code.value if e.code is not None else "exec.unknown",
|
|
445
|
+
"category": e.category.value,
|
|
446
|
+
"provider": getattr(client, "provider", ""),
|
|
447
|
+
"message": str(e),
|
|
448
|
+
}
|
|
449
|
+
# CLI-backed clients know their binary version after the
|
|
450
|
+
# first handshake; every 2.1.x CLI incident was version
|
|
451
|
+
# skew, so record it at the moment of failure when known.
|
|
452
|
+
cli_version = getattr(client, "_cli_version_value", None)
|
|
453
|
+
if cli_version:
|
|
454
|
+
error_payload["cli_version"] = str(cli_version)
|
|
455
|
+
state.add_event("api.error", error_payload)
|
|
456
|
+
raise
|
|
457
|
+
state.add_event(
|
|
458
|
+
"api.response",
|
|
459
|
+
{
|
|
460
|
+
"stop_reason": response.stop_reason,
|
|
461
|
+
"text_length": len(response.text),
|
|
462
|
+
"tool_calls": len(response.tool_calls),
|
|
463
|
+
"input_tokens": response.usage.input_tokens,
|
|
464
|
+
"output_tokens": response.usage.output_tokens,
|
|
465
|
+
},
|
|
466
|
+
)
|
|
467
|
+
return response
|
|
380
468
|
|
|
381
|
-
|
|
382
|
-
if use_stream:
|
|
383
|
-
response = await self._call_streaming_with_retry(client, cfg, state)
|
|
384
|
-
else:
|
|
385
|
-
response = await self._call_with_retry(client, cfg, state)
|
|
386
|
-
except APIError as e:
|
|
387
|
-
# Structured error envelope (2.2.0, audit §3.2 / Tier 1-1):
|
|
388
|
-
# before this event, a host UI that wanted "auth failed,
|
|
389
|
-
# category fatal, on the CLI backend" had to regex the
|
|
390
|
-
# exception string out of pipeline.error — Geny's
|
|
391
|
-
# llm_patches module existed solely to absorb that. The
|
|
392
|
-
# stable code/category land in the stream BEFORE the
|
|
393
|
-
# exception propagates, so transcripts always carry the
|
|
394
|
-
# classification even when a retry wrapper upstream
|
|
395
|
-
# swallows or rewraps the exception object itself.
|
|
396
|
-
error_payload: Dict[str, Any] = {
|
|
397
|
-
"code": e.code.value if e.code is not None else "exec.unknown",
|
|
398
|
-
"category": e.category.value,
|
|
399
|
-
"provider": getattr(client, "provider", ""),
|
|
400
|
-
"message": str(e),
|
|
401
|
-
}
|
|
402
|
-
# CLI-backed clients know their binary version after the
|
|
403
|
-
# first handshake; every 2.1.x CLI incident was version
|
|
404
|
-
# skew, so record it at the moment of failure when known.
|
|
405
|
-
cli_version = getattr(client, "_cli_version_value", None)
|
|
406
|
-
if cli_version:
|
|
407
|
-
error_payload["cli_version"] = str(cli_version)
|
|
408
|
-
state.add_event("api.error", error_payload)
|
|
409
|
-
raise
|
|
469
|
+
response = await self._tool_loop.run(call=call_once, client=client, state=state)
|
|
410
470
|
|
|
411
471
|
state.last_api_response = response
|
|
412
472
|
|
|
413
473
|
assistant_content = self._build_assistant_content(response)
|
|
414
474
|
state.add_message("assistant", assistant_content)
|
|
415
475
|
|
|
416
|
-
state.add_event(
|
|
417
|
-
"api.response",
|
|
418
|
-
{
|
|
419
|
-
"stop_reason": response.stop_reason,
|
|
420
|
-
"text_length": len(response.text),
|
|
421
|
-
"tool_calls": len(response.tool_calls),
|
|
422
|
-
"input_tokens": response.usage.input_tokens,
|
|
423
|
-
"output_tokens": response.usage.output_tokens,
|
|
424
|
-
},
|
|
425
|
-
)
|
|
426
|
-
|
|
427
476
|
return response
|
|
428
477
|
|
|
429
478
|
def _build_request(self, state: PipelineState) -> APIRequest:
|
|
@@ -459,10 +508,22 @@ class APIStage(Stage[Any, APIResponse]):
|
|
|
459
508
|
|
|
460
509
|
# ── Retry wrappers ──
|
|
461
510
|
|
|
462
|
-
def _call_kwargs(
|
|
511
|
+
def _call_kwargs(
|
|
512
|
+
self,
|
|
513
|
+
cfg: Any,
|
|
514
|
+
state: PipelineState,
|
|
515
|
+
*,
|
|
516
|
+
extra_messages: Optional[List[Dict[str, Any]]] = None,
|
|
517
|
+
) -> Dict[str, Any]:
|
|
518
|
+
# ``extra_messages`` (2.3.0): the internal tool loop's pending
|
|
519
|
+
# exchange rides AFTER the state history for this call only —
|
|
520
|
+
# state.messages stays untouched until the loop commits it.
|
|
521
|
+
messages = list(state.messages)
|
|
522
|
+
if extra_messages:
|
|
523
|
+
messages.extend(extra_messages)
|
|
463
524
|
kwargs: Dict[str, Any] = {
|
|
464
525
|
"model_config": cfg,
|
|
465
|
-
"messages":
|
|
526
|
+
"messages": messages,
|
|
466
527
|
"purpose": "api",
|
|
467
528
|
}
|
|
468
529
|
if state.system:
|
|
@@ -509,10 +570,15 @@ class APIStage(Stage[Any, APIResponse]):
|
|
|
509
570
|
)
|
|
510
571
|
|
|
511
572
|
async def _call_with_retry(
|
|
512
|
-
self,
|
|
573
|
+
self,
|
|
574
|
+
client: BaseClient,
|
|
575
|
+
cfg: Any,
|
|
576
|
+
state: PipelineState,
|
|
577
|
+
*,
|
|
578
|
+
extra_messages: Optional[List[Dict[str, Any]]] = None,
|
|
513
579
|
) -> APIResponse:
|
|
514
580
|
last_error: Optional[Exception] = None
|
|
515
|
-
kwargs = self._call_kwargs(cfg, state)
|
|
581
|
+
kwargs = self._call_kwargs(cfg, state, extra_messages=extra_messages)
|
|
516
582
|
self._apply_timeout_kwarg(kwargs, client, state, "create_message")
|
|
517
583
|
|
|
518
584
|
for attempt in range(self._retry.max_retries + 1):
|
|
@@ -557,13 +623,18 @@ class APIStage(Stage[Any, APIResponse]):
|
|
|
557
623
|
)
|
|
558
624
|
|
|
559
625
|
async def _call_streaming_with_retry(
|
|
560
|
-
self,
|
|
626
|
+
self,
|
|
627
|
+
client: BaseClient,
|
|
628
|
+
cfg: Any,
|
|
629
|
+
state: PipelineState,
|
|
630
|
+
*,
|
|
631
|
+
extra_messages: Optional[List[Dict[str, Any]]] = None,
|
|
561
632
|
) -> APIResponse:
|
|
562
633
|
last_error: Optional[Exception] = None
|
|
563
634
|
|
|
564
635
|
for attempt in range(self._retry.max_retries + 1):
|
|
565
636
|
try:
|
|
566
|
-
return await self._call_streaming(client, cfg, state)
|
|
637
|
+
return await self._call_streaming(client, cfg, state, extra_messages=extra_messages)
|
|
567
638
|
except APIError as e:
|
|
568
639
|
last_error = e
|
|
569
640
|
if not self._retry.should_retry(e.category, attempt):
|
|
@@ -603,7 +674,12 @@ class APIStage(Stage[Any, APIResponse]):
|
|
|
603
674
|
)
|
|
604
675
|
|
|
605
676
|
async def _call_streaming(
|
|
606
|
-
self,
|
|
677
|
+
self,
|
|
678
|
+
client: BaseClient,
|
|
679
|
+
cfg: Any,
|
|
680
|
+
state: PipelineState,
|
|
681
|
+
*,
|
|
682
|
+
extra_messages: Optional[List[Dict[str, Any]]] = None,
|
|
607
683
|
) -> APIResponse:
|
|
608
684
|
"""Drain the client's canonical chunk stream into state events.
|
|
609
685
|
|
|
@@ -646,7 +722,7 @@ class APIStage(Stage[Any, APIResponse]):
|
|
|
646
722
|
``llm_client.unknown_wire_shape`` sink event.
|
|
647
723
|
"""
|
|
648
724
|
response: Optional[APIResponse] = None
|
|
649
|
-
kwargs = self._call_kwargs(cfg, state)
|
|
725
|
+
kwargs = self._call_kwargs(cfg, state, extra_messages=extra_messages)
|
|
650
726
|
self._apply_timeout_kwarg(kwargs, client, state, "create_message_stream")
|
|
651
727
|
|
|
652
728
|
# CLI/subprocess backends run their own tool loop — a tool_use
|
|
@@ -702,20 +778,10 @@ class APIStage(Stage[Any, APIResponse]):
|
|
|
702
778
|
# ── Response formatting ──
|
|
703
779
|
|
|
704
780
|
def _build_assistant_content(self, response: APIResponse) -> List[Dict[str, Any]]:
|
|
705
|
-
"""Build assistant content for message history.
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
elif block.type == "tool_use":
|
|
713
|
-
blocks.append(
|
|
714
|
-
{
|
|
715
|
-
"type": "tool_use",
|
|
716
|
-
"id": block.tool_use_id,
|
|
717
|
-
"name": block.tool_name,
|
|
718
|
-
"input": block.tool_input,
|
|
719
|
-
}
|
|
720
|
-
)
|
|
721
|
-
return blocks
|
|
781
|
+
"""Build assistant content for message history.
|
|
782
|
+
|
|
783
|
+
Delegates to the module-level renderer shared with the internal
|
|
784
|
+
tool loop (2.3.0) so the recorded history shape cannot drift
|
|
785
|
+
between the single-call and internal-loop paths.
|
|
786
|
+
"""
|
|
787
|
+
return assistant_content_blocks(response)
|