geny-executor 2.1.3__tar.gz → 2.1.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.
- {geny_executor-2.1.3 → geny_executor-2.1.4}/PKG-INFO +1 -1
- {geny_executor-2.1.3 → geny_executor-2.1.4}/pyproject.toml +1 -1
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/__init__.py +1 -1
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/translators/_cli.py +164 -6
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/unit/test_translators_cli_claude_code.py +143 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/.gitignore +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/LICENSE +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/README.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/README_ko.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/channels/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/channels/send_message_channel.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/channels/user_file_channel.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/artifact.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/builder.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/config.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/diff.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/environment.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/errors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/introspection.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/mutation.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/pipeline.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/presets.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/result.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/schema.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/shared_keys.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/slot.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/snapshot.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/core/state.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/cron/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/cron/runner.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/cron/store_abc.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/cron/store_impl/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/cron/store_impl/file_backed.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/cron/store_impl/in_memory.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/cron/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/events/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/events/bus.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/events/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/history/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/history/ab_test.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/history/cost.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/history/models.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/history/monitor.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/history/replay.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/history/service.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/hooks/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/hooks/config.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/hooks/events.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/hooks/runner.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/_cli_runtime.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/anthropic.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/base.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/claude_code.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/credentials.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/google.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/openai.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/translators/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/translators/_canonical.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/vllm.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/_locks.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/_progressive.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/composite/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/composite/handles.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/composite/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/composite/routing.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/composite/snapshot.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/embedding/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/embedding/client.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/embedding/google.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/embedding/local.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/embedding/openai.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/embedding/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/embedding/voyage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/factory.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/presets.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/ephemeral.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/config.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/frontmatter.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/index_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/layout.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/ltm_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/notes_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/snapshot.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/stm_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/timezone.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/vector_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/config.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/connection.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/index_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/ltm_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/notes_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/schema.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/snapshot.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/stm_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/vector_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/retriever.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/strategy.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/notifications/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/notifications/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/permission/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/permission/loader.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/permission/matrix.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/permission/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/py.typed +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/runtime/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/runtime/task_executors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/runtime/task_runner.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/security/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/security/import_validator.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/security/script_sandbox.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/session/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/session/freshness.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/session/manager.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/session/persistence.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/session/session.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/settings/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/settings/loader.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/settings/section_registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/bundled/batch/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/bundled/debug/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/bundled/loop/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/bundled/lorem-ipsum/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/bundled/simplify/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/bundled/skillify/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/bundled/stuck/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/bundled/verify/SKILL.md +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/bundled_skills.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/fork.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/frontmatter.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/loader.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/mcp_bridge.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/path_match.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/shell_blocks.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/skill_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/skills/watcher.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/_helpers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/cancel.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/clear.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/compact.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/config.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/context.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/cost.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/help.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/memory.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/model.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/preset_info.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/status.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/built_in/tasks.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/md_template.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/parser.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/slash_commands/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/artifact/default/normalizers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/artifact/default/validators.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/normalizers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s01_input/validators.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/artifact/default/compactors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/artifact/default/retrievers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/compactors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/retrievers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s02_context/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/artifact/default/builders.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/builders.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/persona/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/persona/builder.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/persona/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s03_system/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s04_guard/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s04_guard/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s04_guard/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s04_guard/artifact/default/guards.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s04_guard/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s04_guard/guards.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s04_guard/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s04_guard/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s04_guard/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s05_cache/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s05_cache/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s05_cache/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s05_cache/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s05_cache/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s05_cache/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s05_cache/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s05_cache/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/_translate.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/artifact/default/providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/artifact/default/retry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/artifact/default/router.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/artifact/google/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/artifact/google/providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/artifact/openai/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/artifact/openai/providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/retry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s06_api/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s07_token/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s07_token/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s07_token/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s07_token/artifact/default/pricing.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s07_token/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s07_token/artifact/default/trackers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s07_token/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s07_token/pricing.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s07_token/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s07_token/trackers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s08_think/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s08_think/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s08_think/artifact/default/budget.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s08_think/artifact/default/processors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s08_think/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s08_think/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s08_think/processors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s08_think/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s08_think/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s09_parse/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s09_parse/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s09_parse/artifact/default/parsers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s09_parse/artifact/default/signals.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s09_parse/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s09_parse/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s09_parse/parsers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s09_parse/signals.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s09_parse/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s09_parse/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/artifact/default/executors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/artifact/default/routers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/executors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/persistence.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/routers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/state_mutation.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s10_tool/streaming.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s11_tool_review/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s11_tool_review/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s11_tool_review/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s11_tool_review/artifact/default/reviewers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s11_tool_review/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s11_tool_review/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s12_agent/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s12_agent/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s12_agent/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s12_agent/artifact/default/orchestrators.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s12_agent/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s12_agent/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s12_agent/orchestrators.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s12_agent/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s12_agent/subagent_type.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s12_agent/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s13_task_registry/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s13_task_registry/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s13_task_registry/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s13_task_registry/artifact/default/file_backed_registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s13_task_registry/artifact/default/policies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s13_task_registry/artifact/default/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s13_task_registry/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s13_task_registry/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s13_task_registry/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/strategy.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s14_evaluate/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s15_hitl/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s15_hitl/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s15_hitl/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s15_hitl/artifact/default/requesters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s15_hitl/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s15_hitl/artifact/default/timeouts.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s15_hitl/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s15_hitl/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s16_loop/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s16_loop/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s16_loop/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s16_loop/artifact/default/controllers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s16_loop/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s16_loop/controllers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s16_loop/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s16_loop/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s17_emit/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s17_emit/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s17_emit/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s17_emit/artifact/default/emitters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s17_emit/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s17_emit/emitters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s17_emit/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s17_emit/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s17_emit/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/_dehydrate.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/artifact/default/persistence.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/insight.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/persistence.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s18_memory/strategies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s19_summarize/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s19_summarize/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s19_summarize/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s19_summarize/artifact/default/importance.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s19_summarize/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s19_summarize/artifact/default/summarizers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s19_summarize/frequency_policy.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s19_summarize/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s19_summarize/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s20_persist/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s20_persist/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s20_persist/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s20_persist/artifact/default/frequencies.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s20_persist/artifact/default/persisters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s20_persist/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s20_persist/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s20_persist/restore.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s20_persist/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s21_yield/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s21_yield/artifact/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s21_yield/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s21_yield/artifact/default/formatters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s21_yield/artifact/default/multi_format.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s21_yield/artifact/default/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s21_yield/formatters.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s21_yield/interface.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/stages/s21_yield/stage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/adhoc.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/base.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/_path_guard.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/agent_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/ask_user_question_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/bash_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/cron_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/dev_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/edit_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/glob_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/grep_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/mcp_wrapper_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/notebook_edit_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/operator_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/plan_mode_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/push_notification_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/read_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/send_message_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/task_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/todo_write_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/tool_search_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/web_fetch_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/web_search_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/worktree_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/built_in/write_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/composer.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/errors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/mcp/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/mcp/adapter.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/mcp/credentials.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/mcp/errors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/mcp/manager.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/mcp/oauth.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/mcp/state.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/mcp/uri.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/sandbox.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/scope.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/tools/stage_binding.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/workspace/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/workspace/stack.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/workspace/types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/_fixtures/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/_fixtures/fake_claude.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/_fixtures/fake_echo_cli.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/conftest.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/fixtures/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/fixtures/adapter/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/fixtures/adapter/adapter.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/test_c1_six_layer_retrieval.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/test_c2_execution_recording.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/test_c3_reflection_and_promotion.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/test_c4_rest_coverage.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/test_c5_embedding_migration.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/test_c6_session_resume.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/test_c7_adapter_parity.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/completeness/test_spec_loads.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/memory_provider_contract.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_embedding_clients.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_error_codes_stability.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_auto_vector.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_composite.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_composite_routing.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_curated_global.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_ephemeral.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_factory.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_file.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_file_layout.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_file_vector.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_sql.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_sql_dialect.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_sql_schema.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_memory_provider_sql_vector.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/contract/test_stage_uniformity.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/integration/test_cycle_ab_cross_import.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/integration/test_integration.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/conformance/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/conformance/harness.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/conformance/test_anthropic.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/conformance/test_claude_code_cli.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/conformance/test_google.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/conformance/test_openai.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/conformance/test_vllm.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/unit/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/unit/test_anthropic_build_kwargs.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/unit/test_claude_code.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/unit/test_cli_runtime.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/llm_client/unit/test_credentials.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/__init__.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_adaptive_model_router.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_adaptive_thinking_budget.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_adhoc_providers.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_agent_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_artifact_metadata.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_ask_user_question_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_binary_classify_manifest.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_built_in_autoregister.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_builtin_capabilities.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_builtin_features.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_composite_set_hooks.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_cron_runner.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_cron_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_cron_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_dev_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_dynamic_persona_builder.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_errors_categories.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_evaluation_chain.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_fork_multi_provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_hierarchical_sidecars.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_hook_in_process.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_hook_runner.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_hooks_and_shared_keys.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_index_list_categories.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_index_render_vault_map.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_interaction_fields.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_introspection.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_llm_client_base.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_llm_client_capabilities.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_llm_client_registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_llm_client_request_types.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_llm_client_state.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_llm_summary_compactor.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_loop_agnostic_lock.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_manifest_provider_validation.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_manifest_v2.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_manifest_v3_migration.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_mcp_annotations_attach.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_mcp_credential_store.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_mcp_fsm.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_mcp_lifecycle.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_mcp_namespace.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_mcp_oauth.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_mcp_prompts_skills_bridge.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_mcp_resource_retriever.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_mcp_uri.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_mcp_wrapper_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_memory_aware_retriever.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_memory_hooks_after_callbacks.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_memory_metadata_extension.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_multi_dim_budget_controller.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_multi_format_yield.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_multi_provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_multimodal.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_note_graph_queries.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_notebook_edit_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_notes_load_pinned.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_operator_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_ordered_emitter_chain.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_permission_matrix.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_permission_mode_promotions.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase1_foundation.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase1_pipeline.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase2_agent_loop.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase2_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase3_context_memory.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase4_think_agent_evaluate.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase5_emit_presets_mcp.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase5_environment.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase6_history.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase6_integration.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase7_security.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase9a_preset_regen.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_phase9a_scaffolding.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_pipeline_attach_runtime.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_pipeline_from_manifest.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_pipeline_session_runtime.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_plan_mode_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_progressive_disclosure.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_provider_driven_strategy.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_push_notification_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_refresh_backlinks_extension.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_resolve_model_config.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_runtime_task_runner.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s06_provider_selection.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s13_file_backed_registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s13_task_registry_output.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s19_frequency_policy.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s9b1_tool_review.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s9b2_task_registry.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s9b3_hitl.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s9b4_summarize.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s9b5_persist.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s9c1_pipeline_resume.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_s9c2_restore_state.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_send_message_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_settings_loader.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_skill_phase_10_1.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_skill_phase_10_2.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_skill_phase_10_3.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_skill_phase_10_4_bundled.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_skill_phase_10_5_fork.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_skill_phase_10_6_killer.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_skill_phase_10_7_watcher.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_skill_richer_schema.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_skill_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_skills_foundation.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_slash_built_in_control.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_slash_built_in_introspection.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_slash_commands.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_slash_md_template.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_stage10_hook_wiring.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_stage10_partition_executor.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_stage10_permission_matrix.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_stage19_session_summary.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_state_mutation_wiring.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_state_shared_and_local.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_stm_append_event.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_streaming_tool_executor.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_structured_output_parser.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_structured_reflection.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_subagent_credential_propagation.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_subagent_descriptor.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_subagent_orchestrator_zero_arg.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_subagent_parallel.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_subagent_type_orchestrator.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_task_tools.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_todo_write_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_tool_abc_uplift.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_tool_call_events.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_tool_errors.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_tool_lifecycle_hooks.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_tool_provider.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_tool_result_persistence.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_tool_search_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_tool_stage_max_concurrency.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_web_fetch_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_web_search_tool.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_workspace.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_workspace_propagation.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/tests/unit/test_workspace_tools_integration.py +0 -0
- {geny_executor-2.1.3 → geny_executor-2.1.4}/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.1.
|
|
3
|
+
Version: 2.1.4
|
|
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.1.
|
|
7
|
+
version = "2.1.4"
|
|
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"
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/translators/_cli.py
RENAMED
|
@@ -438,6 +438,48 @@ def stream_json_line_to_canonical_event(line_obj: Dict[str, Any]) -> Optional[Di
|
|
|
438
438
|
return {"type": "text_delta", "text": "".join(parts)}
|
|
439
439
|
return None
|
|
440
440
|
|
|
441
|
+
if ltype == "stream_event":
|
|
442
|
+
# Claude Code CLI 2.1.x wrapper around the Anthropic Messages SSE
|
|
443
|
+
# event shape. Each ``stream_event`` line carries a single
|
|
444
|
+
# ``event`` dict whose ``type`` is one of message_start /
|
|
445
|
+
# content_block_start / content_block_delta / content_block_stop
|
|
446
|
+
# / message_delta / message_stop. This is the *only* form that
|
|
447
|
+
# actually streams token-by-token under
|
|
448
|
+
# ``--include-partial-messages``; without handling it, the
|
|
449
|
+
# parser falls through to the terminal ``assistant`` envelope
|
|
450
|
+
# (full-message form) which collapses everything into a single
|
|
451
|
+
# delta — exactly the "no streaming visible in the UI" bug.
|
|
452
|
+
ev = line_obj.get("event") or {}
|
|
453
|
+
if not isinstance(ev, dict):
|
|
454
|
+
return None
|
|
455
|
+
etype = str(ev.get("type", ""))
|
|
456
|
+
if etype == "content_block_delta":
|
|
457
|
+
delta = ev.get("delta") or {}
|
|
458
|
+
dtype = str(delta.get("type", ""))
|
|
459
|
+
if dtype == "text_delta":
|
|
460
|
+
return {"type": "text_delta", "text": delta.get("text", "")}
|
|
461
|
+
if dtype == "thinking_delta":
|
|
462
|
+
return {"type": "thinking_delta", "text": delta.get("text", "")}
|
|
463
|
+
if dtype == "input_json_delta":
|
|
464
|
+
return {"type": "input_json_delta", "delta": delta.get("partial_json", "")}
|
|
465
|
+
return None
|
|
466
|
+
if etype == "content_block_start":
|
|
467
|
+
cb = ev.get("content_block") or {}
|
|
468
|
+
if isinstance(cb, dict) and cb.get("type") == "tool_use":
|
|
469
|
+
return {
|
|
470
|
+
"type": "tool_use",
|
|
471
|
+
"id": cb.get("id"),
|
|
472
|
+
"name": cb.get("name"),
|
|
473
|
+
"input": cb.get("input") or {},
|
|
474
|
+
}
|
|
475
|
+
return None
|
|
476
|
+
if etype == "content_block_stop":
|
|
477
|
+
return {"type": "content_block_stop"}
|
|
478
|
+
# message_start / message_delta / message_stop carry usage +
|
|
479
|
+
# stop_reason metadata. Not text-bearing; let the accumulator
|
|
480
|
+
# record them silently.
|
|
481
|
+
return None
|
|
482
|
+
|
|
441
483
|
if ltype == "content_block_stop":
|
|
442
484
|
return {"type": "content_block_stop"}
|
|
443
485
|
if ltype == "message_stop":
|
|
@@ -579,6 +621,9 @@ class StreamJsonAccumulator:
|
|
|
579
621
|
if ltype == "assistant":
|
|
580
622
|
return self._feed_assistant(line)
|
|
581
623
|
|
|
624
|
+
if ltype == "stream_event":
|
|
625
|
+
return self._feed_stream_event(line)
|
|
626
|
+
|
|
582
627
|
if ltype == "content_block_stop":
|
|
583
628
|
self._close_current_tool()
|
|
584
629
|
return [{"type": "content_block_stop"}]
|
|
@@ -709,12 +754,125 @@ class StreamJsonAccumulator:
|
|
|
709
754
|
|
|
710
755
|
return []
|
|
711
756
|
|
|
757
|
+
def _feed_stream_event(self, line: Dict[str, Any]) -> List[Dict[str, Any]]:
|
|
758
|
+
"""Process a single Claude Code CLI ``stream_event`` line.
|
|
759
|
+
|
|
760
|
+
Claude Code CLI 2.1.x wraps the Anthropic Messages SSE event
|
|
761
|
+
shape inside a ``{"type":"stream_event","event":{...}}`` envelope
|
|
762
|
+
when ``--include-partial-messages`` is on. The accumulator turns
|
|
763
|
+
each one into the same canonical UI event the legacy ``assistant``
|
|
764
|
+
delta form produced, so downstream consumers (Geny's session
|
|
765
|
+
logger streaming pipe, Stage 10's tool dispatch, anything else
|
|
766
|
+
that reads ``feed()`` output) get token-level deltas without
|
|
767
|
+
having to learn the new wire format.
|
|
768
|
+
|
|
769
|
+
Mappings:
|
|
770
|
+
- ``message_start`` → record id + usage; no UI event
|
|
771
|
+
- ``content_block_start`` → tool_use carries the tool record
|
|
772
|
+
- ``content_block_delta`` → text_delta / thinking_delta /
|
|
773
|
+
input_json_delta
|
|
774
|
+
- ``content_block_stop`` → close current tool; emit stop
|
|
775
|
+
- ``message_delta`` → record stop_reason; no UI event
|
|
776
|
+
- ``message_stop`` → no UI event (caller emits the
|
|
777
|
+
final ``message_complete`` after
|
|
778
|
+
``finalize()``)
|
|
779
|
+
"""
|
|
780
|
+
ev = line.get("event") or {}
|
|
781
|
+
if not isinstance(ev, dict):
|
|
782
|
+
return []
|
|
783
|
+
etype = str(ev.get("type", ""))
|
|
784
|
+
|
|
785
|
+
if etype == "message_start":
|
|
786
|
+
msg = ev.get("message") or {}
|
|
787
|
+
if isinstance(msg, dict):
|
|
788
|
+
self._message_id = str(msg.get("id") or self._message_id)
|
|
789
|
+
self._resolved_model = str(msg.get("model") or self._resolved_model)
|
|
790
|
+
usage = msg.get("usage")
|
|
791
|
+
if isinstance(usage, dict) and self._final_obj is None:
|
|
792
|
+
self._final_obj = {"usage": usage}
|
|
793
|
+
return []
|
|
794
|
+
|
|
795
|
+
if etype == "content_block_start":
|
|
796
|
+
cb = ev.get("content_block") or {}
|
|
797
|
+
if isinstance(cb, dict) and cb.get("type") == "tool_use":
|
|
798
|
+
self._current_tool = {
|
|
799
|
+
"id": cb.get("id"),
|
|
800
|
+
"name": cb.get("name"),
|
|
801
|
+
"input": cb.get("input") or {},
|
|
802
|
+
}
|
|
803
|
+
return [
|
|
804
|
+
{
|
|
805
|
+
"type": "tool_use",
|
|
806
|
+
"id": cb.get("id"),
|
|
807
|
+
"name": cb.get("name"),
|
|
808
|
+
"input": cb.get("input") or {},
|
|
809
|
+
}
|
|
810
|
+
]
|
|
811
|
+
return []
|
|
812
|
+
|
|
813
|
+
if etype == "content_block_delta":
|
|
814
|
+
delta = ev.get("delta") or {}
|
|
815
|
+
dtype = str(delta.get("type", ""))
|
|
816
|
+
if dtype == "text_delta":
|
|
817
|
+
text = str(delta.get("text", ""))
|
|
818
|
+
if text:
|
|
819
|
+
self._text_buf.append(text)
|
|
820
|
+
return [{"type": "text_delta", "text": text}]
|
|
821
|
+
return []
|
|
822
|
+
if dtype == "thinking_delta":
|
|
823
|
+
text = str(delta.get("text", ""))
|
|
824
|
+
if text:
|
|
825
|
+
self._thinking_buf.append(text)
|
|
826
|
+
return [{"type": "thinking_delta", "text": text}]
|
|
827
|
+
return []
|
|
828
|
+
if dtype == "input_json_delta":
|
|
829
|
+
partial = str(delta.get("partial_json", ""))
|
|
830
|
+
if self._current_tool is not None:
|
|
831
|
+
self._current_tool.setdefault("_partial_json", "")
|
|
832
|
+
self._current_tool["_partial_json"] += partial
|
|
833
|
+
return [{"type": "input_json_delta", "delta": partial}]
|
|
834
|
+
return []
|
|
835
|
+
|
|
836
|
+
if etype == "content_block_stop":
|
|
837
|
+
self._close_current_tool()
|
|
838
|
+
return [{"type": "content_block_stop"}]
|
|
839
|
+
|
|
840
|
+
if etype == "message_delta":
|
|
841
|
+
delta = ev.get("delta") or {}
|
|
842
|
+
if isinstance(delta, dict):
|
|
843
|
+
sr = delta.get("stop_reason")
|
|
844
|
+
if sr:
|
|
845
|
+
self._stop_reason = str(sr)
|
|
846
|
+
# Some emitters tag usage on the message_delta event too.
|
|
847
|
+
usage = ev.get("usage")
|
|
848
|
+
if isinstance(usage, dict):
|
|
849
|
+
if self._final_obj is None:
|
|
850
|
+
self._final_obj = {"usage": usage}
|
|
851
|
+
else:
|
|
852
|
+
self._final_obj.setdefault("usage", usage)
|
|
853
|
+
return []
|
|
854
|
+
|
|
855
|
+
if etype == "message_stop":
|
|
856
|
+
return []
|
|
857
|
+
|
|
858
|
+
return []
|
|
859
|
+
|
|
712
860
|
def _feed_message(self, message: Dict[str, Any]) -> List[Dict[str, Any]]:
|
|
713
861
|
"""Process a full assistant message envelope's content array.
|
|
714
862
|
|
|
715
863
|
Emits synthetic per-block delta events so UI consumers see the
|
|
716
864
|
same canonical shape they would with true streaming, then
|
|
717
865
|
records the blocks for the eventual :class:`APIResponse`.
|
|
866
|
+
|
|
867
|
+
``stream_event``-form coexistence — Claude Code CLI 2.1.x with
|
|
868
|
+
``--include-partial-messages`` emits BOTH per-token
|
|
869
|
+
``stream_event`` lines AND a terminal ``assistant`` envelope
|
|
870
|
+
containing the same text in full. If we've already accumulated
|
|
871
|
+
text/thinking via the ``stream_event`` deltas, the envelope is
|
|
872
|
+
a duplicate and re-recording it would double every assistant
|
|
873
|
+
message. ``tool_use`` blocks are kept either way — tool calls
|
|
874
|
+
arrive via ``content_block_start``, not via deltas, so the
|
|
875
|
+
envelope is the canonical record for them.
|
|
718
876
|
"""
|
|
719
877
|
# Capture stop_reason / usage off the envelope if present —
|
|
720
878
|
# the ``message`` form lets the assistant frame carry these
|
|
@@ -725,12 +883,8 @@ class StreamJsonAccumulator:
|
|
|
725
883
|
usage = message.get("usage")
|
|
726
884
|
if isinstance(usage, dict) and self._final_obj is None:
|
|
727
885
|
self._final_obj = {"usage": usage}
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
# text block. Surface as an APIError-friendly error event so
|
|
731
|
-
# callers raise instead of returning empty output.
|
|
732
|
-
# (Detected on the outer ``line``, but ``message`` is the
|
|
733
|
-
# carrier so we pass it through unchanged here.)
|
|
886
|
+
|
|
887
|
+
already_streamed = bool(self._text_buf) or bool(self._thinking_buf)
|
|
734
888
|
|
|
735
889
|
events: List[Dict[str, Any]] = []
|
|
736
890
|
content = message.get("content") or []
|
|
@@ -741,11 +895,15 @@ class StreamJsonAccumulator:
|
|
|
741
895
|
continue
|
|
742
896
|
btype = str(block.get("type", ""))
|
|
743
897
|
if btype == "text":
|
|
898
|
+
if already_streamed:
|
|
899
|
+
continue
|
|
744
900
|
text = str(block.get("text", ""))
|
|
745
901
|
if text:
|
|
746
902
|
self._text_buf.append(text)
|
|
747
903
|
events.append({"type": "text_delta", "text": text})
|
|
748
904
|
elif btype == "thinking":
|
|
905
|
+
if already_streamed:
|
|
906
|
+
continue
|
|
749
907
|
# Anthropic uses ``thinking`` field; some shims use ``text``.
|
|
750
908
|
text = str(block.get("thinking") or block.get("text") or "")
|
|
751
909
|
if text:
|
|
@@ -423,6 +423,149 @@ def test_event_unknown_type() -> None:
|
|
|
423
423
|
assert out["raw"] is raw
|
|
424
424
|
|
|
425
425
|
|
|
426
|
+
# ---------------------------------------------------------------------------
|
|
427
|
+
# stream_event wire format (Claude Code CLI 2.1.x + --include-partial-messages)
|
|
428
|
+
# ---------------------------------------------------------------------------
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
def test_event_stream_event_content_block_delta_text() -> None:
|
|
432
|
+
"""The wire format the CLI emits under partial-messages — must
|
|
433
|
+
surface the same canonical text_delta downstream consumers
|
|
434
|
+
already understand."""
|
|
435
|
+
line = {
|
|
436
|
+
"type": "stream_event",
|
|
437
|
+
"event": {
|
|
438
|
+
"type": "content_block_delta",
|
|
439
|
+
"index": 0,
|
|
440
|
+
"delta": {"type": "text_delta", "text": "우"},
|
|
441
|
+
},
|
|
442
|
+
"session_id": "s",
|
|
443
|
+
"uuid": "u",
|
|
444
|
+
}
|
|
445
|
+
assert stream_json_line_to_canonical_event(line) == {
|
|
446
|
+
"type": "text_delta",
|
|
447
|
+
"text": "우",
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
def test_event_stream_event_content_block_delta_thinking() -> None:
|
|
452
|
+
line = {
|
|
453
|
+
"type": "stream_event",
|
|
454
|
+
"event": {
|
|
455
|
+
"type": "content_block_delta",
|
|
456
|
+
"index": 1,
|
|
457
|
+
"delta": {"type": "thinking_delta", "text": "hm"},
|
|
458
|
+
},
|
|
459
|
+
}
|
|
460
|
+
assert stream_json_line_to_canonical_event(line) == {
|
|
461
|
+
"type": "thinking_delta",
|
|
462
|
+
"text": "hm",
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
def test_event_stream_event_content_block_start_tool_use() -> None:
|
|
467
|
+
line = {
|
|
468
|
+
"type": "stream_event",
|
|
469
|
+
"event": {
|
|
470
|
+
"type": "content_block_start",
|
|
471
|
+
"index": 2,
|
|
472
|
+
"content_block": {
|
|
473
|
+
"type": "tool_use",
|
|
474
|
+
"id": "id1",
|
|
475
|
+
"name": "Read",
|
|
476
|
+
"input": {"path": "/x"},
|
|
477
|
+
},
|
|
478
|
+
},
|
|
479
|
+
}
|
|
480
|
+
assert stream_json_line_to_canonical_event(line) == {
|
|
481
|
+
"type": "tool_use",
|
|
482
|
+
"id": "id1",
|
|
483
|
+
"name": "Read",
|
|
484
|
+
"input": {"path": "/x"},
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
def test_event_stream_event_content_block_stop() -> None:
|
|
489
|
+
line = {"type": "stream_event", "event": {"type": "content_block_stop", "index": 0}}
|
|
490
|
+
assert stream_json_line_to_canonical_event(line) == {"type": "content_block_stop"}
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
def test_event_stream_event_message_metadata_yields_none() -> None:
|
|
494
|
+
"""``message_start`` / ``message_delta`` / ``message_stop`` are
|
|
495
|
+
metadata-only; no UI event is emitted."""
|
|
496
|
+
for etype in ("message_start", "message_delta", "message_stop"):
|
|
497
|
+
line = {"type": "stream_event", "event": {"type": etype}}
|
|
498
|
+
assert stream_json_line_to_canonical_event(line) is None
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
# ---------------------------------------------------------------------------
|
|
502
|
+
# StreamJsonAccumulator — stream_event flow
|
|
503
|
+
# ---------------------------------------------------------------------------
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
def test_accumulator_stream_event_yields_token_deltas() -> None:
|
|
507
|
+
"""End-to-end: feeding a sequence of stream_event lines that
|
|
508
|
+
mirror the actual CLI output produces a list of text_delta events
|
|
509
|
+
matching the per-token chunks the CLI emitted."""
|
|
510
|
+
from geny_executor.llm_client.translators._cli import StreamJsonAccumulator
|
|
511
|
+
|
|
512
|
+
accum = StreamJsonAccumulator(model="claude-opus-4-7")
|
|
513
|
+
chunks = ["우", "주는 시간과 공간", "한 전체이다."]
|
|
514
|
+
emitted: list[dict] = []
|
|
515
|
+
for chunk in chunks:
|
|
516
|
+
line = {
|
|
517
|
+
"type": "stream_event",
|
|
518
|
+
"event": {
|
|
519
|
+
"type": "content_block_delta",
|
|
520
|
+
"index": 0,
|
|
521
|
+
"delta": {"type": "text_delta", "text": chunk},
|
|
522
|
+
},
|
|
523
|
+
}
|
|
524
|
+
emitted.extend(accum.feed(line))
|
|
525
|
+
|
|
526
|
+
assert [e["text"] for e in emitted] == chunks, emitted
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
def test_accumulator_skips_duplicate_text_when_envelope_follows_stream() -> None:
|
|
530
|
+
"""The CLI sends BOTH per-token stream_event lines AND a terminal
|
|
531
|
+
``assistant`` envelope with the full text. The accumulator must
|
|
532
|
+
consume the deltas (so the UI streams) and skip the envelope's
|
|
533
|
+
text (so the final response isn't doubled)."""
|
|
534
|
+
from geny_executor.llm_client.translators._cli import StreamJsonAccumulator
|
|
535
|
+
|
|
536
|
+
accum = StreamJsonAccumulator(model="claude-opus-4-7")
|
|
537
|
+
accum.feed(
|
|
538
|
+
{
|
|
539
|
+
"type": "stream_event",
|
|
540
|
+
"event": {
|
|
541
|
+
"type": "content_block_delta",
|
|
542
|
+
"index": 0,
|
|
543
|
+
"delta": {"type": "text_delta", "text": "hello world"},
|
|
544
|
+
},
|
|
545
|
+
}
|
|
546
|
+
)
|
|
547
|
+
# Now the terminal envelope (would be a duplicate before the fix).
|
|
548
|
+
accum.feed(
|
|
549
|
+
{
|
|
550
|
+
"type": "assistant",
|
|
551
|
+
"message": {
|
|
552
|
+
"model": "claude-opus-4-7",
|
|
553
|
+
"id": "msg_x",
|
|
554
|
+
"type": "message",
|
|
555
|
+
"role": "assistant",
|
|
556
|
+
"content": [{"type": "text", "text": "hello world"}],
|
|
557
|
+
"stop_reason": "end_turn",
|
|
558
|
+
"usage": {"input_tokens": 10, "output_tokens": 3},
|
|
559
|
+
},
|
|
560
|
+
}
|
|
561
|
+
)
|
|
562
|
+
|
|
563
|
+
resp = accum.finalize()
|
|
564
|
+
assert resp.text == "hello world", (
|
|
565
|
+
f"finalize text duplicated by envelope replay: {resp.text!r}"
|
|
566
|
+
)
|
|
567
|
+
|
|
568
|
+
|
|
426
569
|
# ---------------------------------------------------------------------------
|
|
427
570
|
# parse_json_output_to_response
|
|
428
571
|
# ---------------------------------------------------------------------------
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/channels/send_message_channel.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/cron/store_impl/file_backed.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/translators/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/llm_client/translators/_canonical.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/config.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/frontmatter.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/index_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/layout.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/ltm_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/notes_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/provider.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/snapshot.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/stm_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/timezone.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/file/vector_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.1.3 → geny_executor-2.1.4}/src/geny_executor/memory/providers/sql/config.py
RENAMED
|
File without changes
|