geny-executor 2.1.2__tar.gz → 2.1.3__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.2 → geny_executor-2.1.3}/PKG-INFO +1 -1
- {geny_executor-2.1.2 → geny_executor-2.1.3}/pyproject.toml +1 -1
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/__init__.py +1 -1
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/anthropic.py +103 -9
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/unit/test_anthropic_build_kwargs.py +142 -3
- {geny_executor-2.1.2 → geny_executor-2.1.3}/.gitignore +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/LICENSE +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/README.md +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/README_ko.md +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/channels/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/channels/send_message_channel.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/channels/user_file_channel.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/artifact.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/builder.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/config.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/diff.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/environment.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/errors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/introspection.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/mutation.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/pipeline.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/presets.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/result.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/schema.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/shared_keys.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/slot.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/snapshot.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/core/state.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/cron/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/cron/runner.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/cron/store_abc.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/cron/store_impl/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/cron/store_impl/file_backed.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/cron/store_impl/in_memory.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/cron/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/events/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/events/bus.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/events/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/history/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/history/ab_test.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/history/cost.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/history/models.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/history/monitor.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/history/replay.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/history/service.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/hooks/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/hooks/config.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/hooks/events.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/hooks/runner.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/_cli_runtime.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/base.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/claude_code.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/credentials.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/google.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/openai.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/translators/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/translators/_canonical.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/translators/_cli.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/vllm.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/_locks.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/_progressive.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/composite/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/composite/handles.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/composite/provider.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/composite/routing.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/composite/snapshot.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/embedding/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/embedding/client.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/embedding/google.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/embedding/local.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/embedding/openai.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/embedding/registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/embedding/voyage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/factory.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/presets.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/provider.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/ephemeral.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/config.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/frontmatter.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/index_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/layout.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/ltm_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/notes_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/provider.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/snapshot.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/stm_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/timezone.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/vector_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/config.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/connection.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/index_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/ltm_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/notes_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/provider.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/schema.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/snapshot.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/stm_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/vector_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/retriever.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/strategy.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/notifications/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/notifications/registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/permission/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/permission/loader.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/permission/matrix.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/permission/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/py.typed +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/runtime/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/runtime/task_executors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/runtime/task_runner.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/security/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/security/import_validator.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/security/script_sandbox.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/session/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/session/freshness.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/session/manager.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/session/persistence.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/session/session.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/settings/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/settings/loader.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/settings/section_registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/bundled/batch/SKILL.md +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/bundled/debug/SKILL.md +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/bundled/loop/SKILL.md +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/bundled/lorem-ipsum/SKILL.md +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/bundled/simplify/SKILL.md +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/bundled/skillify/SKILL.md +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/bundled/stuck/SKILL.md +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/bundled/verify/SKILL.md +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/bundled_skills.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/fork.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/frontmatter.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/loader.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/mcp_bridge.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/path_match.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/shell_blocks.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/skill_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/skills/watcher.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/_helpers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/cancel.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/clear.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/compact.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/config.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/context.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/cost.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/help.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/memory.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/model.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/preset_info.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/status.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/built_in/tasks.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/md_template.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/parser.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/slash_commands/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/artifact/default/normalizers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/artifact/default/validators.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/normalizers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s01_input/validators.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/artifact/default/compactors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/artifact/default/retrievers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/compactors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/retrievers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/strategies.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s02_context/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/artifact/default/builders.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/builders.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/persona/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/persona/builder.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/persona/provider.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s03_system/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s04_guard/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s04_guard/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s04_guard/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s04_guard/artifact/default/guards.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s04_guard/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s04_guard/guards.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s04_guard/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s04_guard/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s04_guard/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s05_cache/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s05_cache/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s05_cache/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s05_cache/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s05_cache/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s05_cache/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s05_cache/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s05_cache/strategies.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/_translate.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/artifact/default/providers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/artifact/default/retry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/artifact/default/router.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/artifact/google/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/artifact/google/providers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/artifact/openai/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/artifact/openai/providers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/providers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/retry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s06_api/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s07_token/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s07_token/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s07_token/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s07_token/artifact/default/pricing.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s07_token/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s07_token/artifact/default/trackers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s07_token/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s07_token/pricing.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s07_token/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s07_token/trackers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s08_think/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s08_think/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s08_think/artifact/default/budget.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s08_think/artifact/default/processors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s08_think/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s08_think/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s08_think/processors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s08_think/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s08_think/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s09_parse/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s09_parse/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s09_parse/artifact/default/parsers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s09_parse/artifact/default/signals.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s09_parse/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s09_parse/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s09_parse/parsers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s09_parse/signals.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s09_parse/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s09_parse/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/artifact/default/executors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/artifact/default/routers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/executors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/persistence.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/routers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/state_mutation.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s10_tool/streaming.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s11_tool_review/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s11_tool_review/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s11_tool_review/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s11_tool_review/artifact/default/reviewers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s11_tool_review/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s11_tool_review/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s12_agent/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s12_agent/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s12_agent/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s12_agent/artifact/default/orchestrators.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s12_agent/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s12_agent/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s12_agent/orchestrators.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s12_agent/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s12_agent/subagent_type.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s12_agent/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s13_task_registry/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s13_task_registry/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s13_task_registry/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s13_task_registry/artifact/default/file_backed_registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s13_task_registry/artifact/default/policies.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s13_task_registry/artifact/default/registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s13_task_registry/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s13_task_registry/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s13_task_registry/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/strategy.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/strategies.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s14_evaluate/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s15_hitl/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s15_hitl/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s15_hitl/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s15_hitl/artifact/default/requesters.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s15_hitl/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s15_hitl/artifact/default/timeouts.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s15_hitl/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s15_hitl/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s16_loop/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s16_loop/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s16_loop/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s16_loop/artifact/default/controllers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s16_loop/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s16_loop/controllers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s16_loop/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s16_loop/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s17_emit/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s17_emit/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s17_emit/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s17_emit/artifact/default/emitters.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s17_emit/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s17_emit/emitters.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s17_emit/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s17_emit/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s17_emit/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/_dehydrate.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/artifact/default/persistence.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/insight.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/persistence.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s18_memory/strategies.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s19_summarize/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s19_summarize/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s19_summarize/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s19_summarize/artifact/default/importance.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s19_summarize/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s19_summarize/artifact/default/summarizers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s19_summarize/frequency_policy.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s19_summarize/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s19_summarize/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s20_persist/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s20_persist/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s20_persist/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s20_persist/artifact/default/frequencies.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s20_persist/artifact/default/persisters.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s20_persist/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s20_persist/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s20_persist/restore.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s20_persist/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s21_yield/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s21_yield/artifact/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s21_yield/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s21_yield/artifact/default/formatters.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s21_yield/artifact/default/multi_format.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s21_yield/artifact/default/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s21_yield/formatters.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s21_yield/interface.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/stages/s21_yield/stage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/adhoc.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/base.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/_path_guard.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/agent_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/ask_user_question_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/bash_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/cron_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/dev_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/edit_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/glob_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/grep_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/mcp_wrapper_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/notebook_edit_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/operator_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/plan_mode_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/push_notification_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/read_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/send_message_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/task_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/todo_write_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/tool_search_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/web_fetch_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/web_search_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/worktree_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/built_in/write_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/composer.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/errors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/mcp/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/mcp/adapter.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/mcp/credentials.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/mcp/errors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/mcp/manager.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/mcp/oauth.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/mcp/state.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/mcp/uri.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/provider.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/providers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/sandbox.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/scope.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/tools/stage_binding.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/workspace/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/workspace/stack.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/workspace/types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/_fixtures/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/_fixtures/fake_claude.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/_fixtures/fake_echo_cli.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/conftest.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/fixtures/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/fixtures/adapter/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/fixtures/adapter/adapter.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/test_c1_six_layer_retrieval.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/test_c2_execution_recording.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/test_c3_reflection_and_promotion.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/test_c4_rest_coverage.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/test_c5_embedding_migration.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/test_c6_session_resume.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/test_c7_adapter_parity.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/completeness/test_spec_loads.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/memory_provider_contract.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_embedding_clients.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_error_codes_stability.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_auto_vector.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_composite.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_composite_routing.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_curated_global.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_ephemeral.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_factory.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_file.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_file_layout.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_file_vector.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_sql.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_sql_dialect.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_sql_schema.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_memory_provider_sql_vector.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/contract/test_stage_uniformity.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/integration/test_cycle_ab_cross_import.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/integration/test_integration.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/conformance/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/conformance/harness.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/conformance/test_anthropic.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/conformance/test_claude_code_cli.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/conformance/test_google.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/conformance/test_openai.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/conformance/test_vllm.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/unit/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/unit/test_claude_code.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/unit/test_cli_runtime.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/unit/test_credentials.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/unit/test_translators_cli_claude_code.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/__init__.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_adaptive_model_router.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_adaptive_thinking_budget.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_adhoc_providers.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_agent_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_artifact_metadata.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_ask_user_question_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_binary_classify_manifest.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_built_in_autoregister.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_builtin_capabilities.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_builtin_features.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_composite_set_hooks.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_cron_runner.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_cron_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_cron_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_dev_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_dynamic_persona_builder.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_errors_categories.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_evaluation_chain.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_fork_multi_provider.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_hierarchical_sidecars.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_hook_in_process.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_hook_runner.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_hooks_and_shared_keys.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_index_list_categories.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_index_render_vault_map.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_interaction_fields.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_introspection.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_llm_client_base.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_llm_client_capabilities.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_llm_client_registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_llm_client_request_types.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_llm_client_state.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_llm_summary_compactor.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_loop_agnostic_lock.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_manifest_provider_validation.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_manifest_v2.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_manifest_v3_migration.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_mcp_annotations_attach.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_mcp_credential_store.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_mcp_fsm.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_mcp_lifecycle.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_mcp_namespace.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_mcp_oauth.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_mcp_prompts_skills_bridge.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_mcp_resource_retriever.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_mcp_uri.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_mcp_wrapper_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_memory_aware_retriever.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_memory_hooks_after_callbacks.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_memory_metadata_extension.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_multi_dim_budget_controller.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_multi_format_yield.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_multi_provider.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_multimodal.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_note_graph_queries.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_notebook_edit_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_notes_load_pinned.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_operator_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_ordered_emitter_chain.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_permission_matrix.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_permission_mode_promotions.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase1_foundation.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase1_pipeline.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase2_agent_loop.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase2_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase3_context_memory.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase4_think_agent_evaluate.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase5_emit_presets_mcp.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase5_environment.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase6_history.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase6_integration.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase7_security.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase9a_preset_regen.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_phase9a_scaffolding.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_pipeline_attach_runtime.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_pipeline_from_manifest.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_pipeline_session_runtime.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_plan_mode_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_progressive_disclosure.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_provider_driven_strategy.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_push_notification_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_refresh_backlinks_extension.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_resolve_model_config.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_runtime_task_runner.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s06_provider_selection.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s13_file_backed_registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s13_task_registry_output.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s19_frequency_policy.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s9b1_tool_review.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s9b2_task_registry.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s9b3_hitl.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s9b4_summarize.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s9b5_persist.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s9c1_pipeline_resume.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_s9c2_restore_state.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_send_message_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_settings_loader.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_skill_phase_10_1.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_skill_phase_10_2.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_skill_phase_10_3.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_skill_phase_10_4_bundled.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_skill_phase_10_5_fork.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_skill_phase_10_6_killer.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_skill_phase_10_7_watcher.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_skill_richer_schema.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_skill_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_skills_foundation.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_slash_built_in_control.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_slash_built_in_introspection.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_slash_commands.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_slash_md_template.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_stage10_hook_wiring.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_stage10_partition_executor.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_stage10_permission_matrix.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_stage19_session_summary.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_state_mutation_wiring.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_state_shared_and_local.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_stm_append_event.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_streaming_tool_executor.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_structured_output_parser.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_structured_reflection.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_subagent_credential_propagation.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_subagent_descriptor.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_subagent_orchestrator_zero_arg.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_subagent_parallel.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_subagent_type_orchestrator.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_task_tools.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_todo_write_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_tool_abc_uplift.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_tool_call_events.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_tool_errors.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_tool_lifecycle_hooks.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_tool_provider.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_tool_result_persistence.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_tool_search_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_tool_stage_max_concurrency.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_web_fetch_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_web_search_tool.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_workspace.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_workspace_propagation.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/tests/unit/test_workspace_tools_integration.py +0 -0
- {geny_executor-2.1.2 → geny_executor-2.1.3}/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.3
|
|
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.3"
|
|
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"
|
|
@@ -111,6 +111,56 @@ def _model_rejects_sampling_params(model: str) -> bool:
|
|
|
111
111
|
)
|
|
112
112
|
|
|
113
113
|
|
|
114
|
+
# ── ``thinking.type=enabled`` → ``adaptive`` migration ──────────────
|
|
115
|
+
#
|
|
116
|
+
# Opus 4.7 (verified 2026-06-04) rejects ``thinking.type=enabled``
|
|
117
|
+
# and requires ``thinking.type=adaptive`` instead — the old
|
|
118
|
+
# enabled-with-fixed-budget shape isn't valid for the new generation
|
|
119
|
+
# of thinking-native models. The API error reads:
|
|
120
|
+
#
|
|
121
|
+
# ``"thinking.type.enabled" is not supported for this model.
|
|
122
|
+
# Use "thinking.type.adaptive" and "output_config.effort"``.
|
|
123
|
+
#
|
|
124
|
+
# Under ``adaptive``, the model picks its own budget; the legacy
|
|
125
|
+
# ``budget_tokens`` field is rejected as an extra input
|
|
126
|
+
# (``thinking.adaptive.budget_tokens: Extra inputs are not permitted``).
|
|
127
|
+
# Effort is *optional* — calls with bare ``{"type":"adaptive"}`` work.
|
|
128
|
+
# Translate at the boundary so callers that ship the v1 thinking
|
|
129
|
+
# shape continue to work against v2 models.
|
|
130
|
+
_THINKING_ADAPTIVE_ONLY_PREFIXES: tuple[str, ...] = (
|
|
131
|
+
"claude-opus-4-7",
|
|
132
|
+
)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
def _model_requires_adaptive_thinking(model: str) -> bool:
|
|
136
|
+
"""True iff ``model`` only accepts ``thinking.type=adaptive``."""
|
|
137
|
+
return any(
|
|
138
|
+
model.startswith(prefix) for prefix in _THINKING_ADAPTIVE_ONLY_PREFIXES
|
|
139
|
+
)
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
def _translate_thinking_to_adaptive(thinking: Dict[str, Any]) -> Dict[str, Any]:
|
|
143
|
+
"""Migrate a v1 (``type=enabled``) thinking dict to the v2
|
|
144
|
+
(``type=adaptive``) shape Opus 4.7 demands.
|
|
145
|
+
|
|
146
|
+
* ``type`` flips to ``"adaptive"``.
|
|
147
|
+
* ``budget_tokens`` is dropped — the API rejects it under
|
|
148
|
+
adaptive (``thinking.adaptive.budget_tokens: Extra inputs are
|
|
149
|
+
not permitted``).
|
|
150
|
+
* Any other unrelated keys (``display`` etc.) pass through.
|
|
151
|
+
|
|
152
|
+
The kwarg ``output_config.effort`` is *not* added — bare
|
|
153
|
+
``{"type":"adaptive"}`` works against the live API; the API
|
|
154
|
+
picks a default effort. Hosts that want to pin effort can do so
|
|
155
|
+
explicitly by setting it on ``model_config`` and threading it
|
|
156
|
+
through future plumbing.
|
|
157
|
+
"""
|
|
158
|
+
out = dict(thinking)
|
|
159
|
+
out["type"] = "adaptive"
|
|
160
|
+
out.pop("budget_tokens", None)
|
|
161
|
+
return out
|
|
162
|
+
|
|
163
|
+
|
|
114
164
|
# ── Last-line retry on a deprecation 400 ────────────────────────────
|
|
115
165
|
#
|
|
116
166
|
# Future Anthropic releases will deprecate more sampling params for
|
|
@@ -131,18 +181,42 @@ _DEPRECATION_MSG_TO_KWARG_KEY: Dict[str, str] = {
|
|
|
131
181
|
def _retry_kwargs_after_deprecation(
|
|
132
182
|
kwargs: Dict[str, Any], exc: BaseException,
|
|
133
183
|
) -> Optional[Dict[str, Any]]:
|
|
134
|
-
"""If ``exc`` is
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
184
|
+
"""If ``exc`` is an Anthropic 400 we can self-heal, return a
|
|
185
|
+
rebuilt kwargs. ``None`` means *don't retry* — let the caller
|
|
186
|
+
re-raise.
|
|
187
|
+
|
|
188
|
+
Two recognised classes today:
|
|
189
|
+
|
|
190
|
+
1. **Sampling-param deprecation** — the API message names a
|
|
191
|
+
specific field (``temperature``, ``top_p``, ``top_k``) as
|
|
192
|
+
deprecated. Strip the field and retry.
|
|
193
|
+
2. **Thinking v1 → v2 migration** — the API rejects
|
|
194
|
+
``thinking.type=enabled`` and asks for
|
|
195
|
+
``thinking.type.adaptive``. Translate via
|
|
196
|
+
:func:`_translate_thinking_to_adaptive` and retry.
|
|
197
|
+
|
|
198
|
+
Defends against future model rollouts our static prefix lists
|
|
199
|
+
don't know about yet. Caller guarantees one retry per send (we
|
|
200
|
+
never recurse); a retry that also 400s gets classified + raised
|
|
201
|
+
by the outer handler.
|
|
143
202
|
"""
|
|
144
203
|
msg = str(getattr(exc, "message", "") or exc)
|
|
145
204
|
msg_lower = msg.lower()
|
|
205
|
+
|
|
206
|
+
# Class 2 — thinking v1→v2 migration. Run first because the
|
|
207
|
+
# diagnostic is structural (the request shape, not just one
|
|
208
|
+
# missing field).
|
|
209
|
+
if (
|
|
210
|
+
"thinking.type.enabled" in msg_lower
|
|
211
|
+
or "thinking.type.adaptive" in msg_lower
|
|
212
|
+
) and isinstance(kwargs.get("thinking"), dict):
|
|
213
|
+
thinking = kwargs["thinking"]
|
|
214
|
+
if thinking.get("type") == "enabled":
|
|
215
|
+
retry = dict(kwargs)
|
|
216
|
+
retry["thinking"] = _translate_thinking_to_adaptive(thinking)
|
|
217
|
+
return retry
|
|
218
|
+
|
|
219
|
+
# Class 1 — sampling-param deprecation.
|
|
146
220
|
for needle, key in _DEPRECATION_MSG_TO_KWARG_KEY.items():
|
|
147
221
|
if needle in msg_lower and key in kwargs:
|
|
148
222
|
retry = dict(kwargs)
|
|
@@ -367,6 +441,26 @@ class AnthropicClient(BaseClient):
|
|
|
367
441
|
key, dropped, resolved_model,
|
|
368
442
|
)
|
|
369
443
|
|
|
444
|
+
# Thinking-shape migration — see
|
|
445
|
+
# ``_THINKING_ADAPTIVE_ONLY_PREFIXES`` at module top. Opus 4.7
|
|
446
|
+
# rejects ``thinking.type=enabled``; flip to ``adaptive`` (and
|
|
447
|
+
# drop the now-invalid ``budget_tokens``) at the boundary so
|
|
448
|
+
# ``ModelConfig`` callers that still emit the v1 shape
|
|
449
|
+
# continue to work against v2 models.
|
|
450
|
+
if (
|
|
451
|
+
"thinking" in kwargs
|
|
452
|
+
and isinstance(kwargs["thinking"], dict)
|
|
453
|
+
and kwargs["thinking"].get("type") == "enabled"
|
|
454
|
+
and _model_requires_adaptive_thinking(resolved_model)
|
|
455
|
+
):
|
|
456
|
+
before = kwargs["thinking"]
|
|
457
|
+
kwargs["thinking"] = _translate_thinking_to_adaptive(before)
|
|
458
|
+
logger.info(
|
|
459
|
+
"anthropic: translated thinking.type=enabled → adaptive "
|
|
460
|
+
"(model=%r, dropped legacy budget_tokens=%r)",
|
|
461
|
+
resolved_model, before.get("budget_tokens"),
|
|
462
|
+
)
|
|
463
|
+
|
|
370
464
|
return kwargs
|
|
371
465
|
|
|
372
466
|
def _parse_response(self, raw: Any) -> APIResponse:
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/tests/llm_client/unit/test_anthropic_build_kwargs.py
RENAMED
|
@@ -165,8 +165,11 @@ def test_build_kwargs_keeps_sampling_params_when_thinking_absent() -> None:
|
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
def test_build_kwargs_alias_resolution_and_thinking_drop_together() -> None:
|
|
168
|
-
"""
|
|
169
|
-
|
|
168
|
+
"""All three fixes layered: alias → canonical (2.1.1),
|
|
169
|
+
unconditional temperature drop (2.1.2), thinking shape migration
|
|
170
|
+
(2.1.3). This is the exact configuration Geny's VTuber env hits —
|
|
171
|
+
pinning ``opus`` with thinking enabled, the legacy v1
|
|
172
|
+
budget_tokens shape, and an explicit ``temperature``."""
|
|
170
173
|
client = AnthropicClient(api_key="sk-mock")
|
|
171
174
|
kwargs = client._build_kwargs(_req(
|
|
172
175
|
model="opus",
|
|
@@ -175,7 +178,11 @@ def test_build_kwargs_alias_resolution_and_thinking_drop_together() -> None:
|
|
|
175
178
|
))
|
|
176
179
|
assert kwargs["model"] == "claude-opus-4-7"
|
|
177
180
|
assert "temperature" not in kwargs
|
|
178
|
-
|
|
181
|
+
# Opus 4.7 demands ``adaptive``; the migration drops the now-
|
|
182
|
+
# invalid ``budget_tokens`` (the API rejects it under adaptive
|
|
183
|
+
# as ``thinking.adaptive.budget_tokens: Extra inputs are not
|
|
184
|
+
# permitted``).
|
|
185
|
+
assert kwargs["thinking"] == {"type": "adaptive"}
|
|
179
186
|
|
|
180
187
|
|
|
181
188
|
# ── 2.1.2 — Opus 4.7 unconditional sampling-param rejection ───────
|
|
@@ -319,3 +326,135 @@ def test_retry_kwargs_returns_none_when_field_already_absent() -> None:
|
|
|
319
326
|
|
|
320
327
|
kwargs = {"model": "claude-x", "max_tokens": 100}
|
|
321
328
|
assert _retry_kwargs_after_deprecation(kwargs, _Fake400()) is None
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
# ── 2.1.3 — Opus 4.7 thinking.type=enabled → adaptive migration ───
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
from geny_executor.llm_client.anthropic import (
|
|
335
|
+
_model_requires_adaptive_thinking,
|
|
336
|
+
_translate_thinking_to_adaptive,
|
|
337
|
+
)
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
def test_model_requires_adaptive_thinking_for_opus_4_7():
|
|
341
|
+
assert _model_requires_adaptive_thinking("claude-opus-4-7") is True
|
|
342
|
+
assert _model_requires_adaptive_thinking("claude-opus-4-7-20260101") is True
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
@pytest.mark.parametrize(
|
|
346
|
+
"model",
|
|
347
|
+
["claude-sonnet-4-6", "claude-haiku-4-5-20251001", "claude-opus-4-6"],
|
|
348
|
+
)
|
|
349
|
+
def test_model_requires_adaptive_thinking_false_for_v1_models(model: str) -> None:
|
|
350
|
+
assert _model_requires_adaptive_thinking(model) is False
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
def test_translate_thinking_to_adaptive_flips_type_and_drops_budget():
|
|
354
|
+
out = _translate_thinking_to_adaptive(
|
|
355
|
+
{"type": "enabled", "budget_tokens": 4096},
|
|
356
|
+
)
|
|
357
|
+
assert out == {"type": "adaptive"}
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
def test_translate_thinking_to_adaptive_preserves_unrelated_keys():
|
|
361
|
+
out = _translate_thinking_to_adaptive(
|
|
362
|
+
{"type": "enabled", "budget_tokens": 4096, "display": "summarized"},
|
|
363
|
+
)
|
|
364
|
+
assert out == {"type": "adaptive", "display": "summarized"}
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
def test_build_kwargs_translates_thinking_for_opus_4_7() -> None:
|
|
368
|
+
"""The exact failure we hit on 2026-06-04: VTuber's memory stage
|
|
369
|
+
pinned Opus 4.7 via the router with the legacy enabled-shape
|
|
370
|
+
thinking dict, and Anthropic returned
|
|
371
|
+
``thinking.type.enabled is not supported for this model``."""
|
|
372
|
+
client = AnthropicClient(api_key="sk-mock")
|
|
373
|
+
kwargs = client._build_kwargs(_req(
|
|
374
|
+
model="claude-opus-4-7",
|
|
375
|
+
thinking={"type": "enabled", "budget_tokens": 8192},
|
|
376
|
+
))
|
|
377
|
+
assert kwargs["thinking"] == {"type": "adaptive"}
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
def test_build_kwargs_translates_thinking_after_alias_resolution() -> None:
|
|
381
|
+
"""An env pinning the ``opus`` alias should also hit the
|
|
382
|
+
translation after the alias resolves to ``claude-opus-4-7``."""
|
|
383
|
+
client = AnthropicClient(api_key="sk-mock")
|
|
384
|
+
kwargs = client._build_kwargs(_req(
|
|
385
|
+
model="opus",
|
|
386
|
+
thinking={"type": "enabled", "budget_tokens": 4096},
|
|
387
|
+
))
|
|
388
|
+
assert kwargs["model"] == "claude-opus-4-7"
|
|
389
|
+
assert kwargs["thinking"] == {"type": "adaptive"}
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
def test_build_kwargs_does_not_translate_for_sonnet_4_6() -> None:
|
|
393
|
+
"""Regression — only Opus 4.7 (and prefix variants) demand
|
|
394
|
+
``adaptive``. Sonnet / Haiku still accept ``enabled``."""
|
|
395
|
+
client = AnthropicClient(api_key="sk-mock")
|
|
396
|
+
kwargs = client._build_kwargs(_req(
|
|
397
|
+
model="claude-sonnet-4-6",
|
|
398
|
+
thinking={"type": "enabled", "budget_tokens": 4096},
|
|
399
|
+
))
|
|
400
|
+
assert kwargs["thinking"] == {"type": "enabled", "budget_tokens": 4096}
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
def test_build_kwargs_leaves_adaptive_thinking_alone() -> None:
|
|
404
|
+
"""If the caller already shipped ``adaptive``, don't reshape it."""
|
|
405
|
+
client = AnthropicClient(api_key="sk-mock")
|
|
406
|
+
kwargs = client._build_kwargs(_req(
|
|
407
|
+
model="claude-opus-4-7",
|
|
408
|
+
thinking={"type": "adaptive"},
|
|
409
|
+
))
|
|
410
|
+
assert kwargs["thinking"] == {"type": "adaptive"}
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
def test_build_kwargs_full_opus_combo() -> None:
|
|
414
|
+
"""The full failure path the VTuber session hit: Opus 4.7 +
|
|
415
|
+
temperature + thinking.type=enabled + budget_tokens. All three
|
|
416
|
+
fixes (alias, sampling-param drop, thinking migration) layer
|
|
417
|
+
cleanly on the same call."""
|
|
418
|
+
client = AnthropicClient(api_key="sk-mock")
|
|
419
|
+
kwargs = client._build_kwargs(_req(
|
|
420
|
+
model="opus",
|
|
421
|
+
temperature=0.0,
|
|
422
|
+
thinking={"type": "enabled", "budget_tokens": 4096},
|
|
423
|
+
))
|
|
424
|
+
assert kwargs["model"] == "claude-opus-4-7"
|
|
425
|
+
assert "temperature" not in kwargs
|
|
426
|
+
assert kwargs["thinking"] == {"type": "adaptive"}
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
# ── 2.1.3 — Retry self-heals the thinking migration too ───────────
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
def test_retry_kwargs_self_heals_thinking_enabled_400() -> None:
|
|
433
|
+
"""An env shipping ``thinking.type=enabled`` against a future
|
|
434
|
+
adaptive-only model the prefix list doesn't know yet — the API
|
|
435
|
+
will tell us via the 400, and the retry path self-heals."""
|
|
436
|
+
class _Fake400:
|
|
437
|
+
message = (
|
|
438
|
+
'"thinking.type.enabled" is not supported for this model. '
|
|
439
|
+
'Use "thinking.type.adaptive" and "output_config.effort"'
|
|
440
|
+
)
|
|
441
|
+
|
|
442
|
+
kwargs = {
|
|
443
|
+
"model": "claude-future-thinking-v2",
|
|
444
|
+
"messages": [{"role": "user", "content": "x"}],
|
|
445
|
+
"max_tokens": 1024,
|
|
446
|
+
"thinking": {"type": "enabled", "budget_tokens": 2048},
|
|
447
|
+
}
|
|
448
|
+
retry = _retry_kwargs_after_deprecation(kwargs, _Fake400())
|
|
449
|
+
assert retry is not None
|
|
450
|
+
assert retry["thinking"] == {"type": "adaptive"}
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
def test_retry_kwargs_returns_none_when_thinking_already_adaptive() -> None:
|
|
454
|
+
"""If the request was already adaptive, the 400 message about
|
|
455
|
+
enabled must not trigger a useless retry."""
|
|
456
|
+
class _Fake400:
|
|
457
|
+
message = '"thinking.type.enabled" is not supported for this model.'
|
|
458
|
+
|
|
459
|
+
kwargs = {"model": "claude-x", "thinking": {"type": "adaptive"}, "max_tokens": 100}
|
|
460
|
+
assert _retry_kwargs_after_deprecation(kwargs, _Fake400()) is None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/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.2 → geny_executor-2.1.3}/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
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/translators/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/translators/_canonical.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/llm_client/translators/_cli.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.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/config.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/frontmatter.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/index_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/layout.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/ltm_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/notes_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/provider.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/snapshot.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/stm_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/timezone.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/file/vector_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/config.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/connection.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/index_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/ltm_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/notes_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/provider.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/schema.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/snapshot.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/stm_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.2 → geny_executor-2.1.3}/src/geny_executor/memory/providers/sql/vector_store.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
|