geny-executor 2.1.1__tar.gz → 2.1.2__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.1 → geny_executor-2.1.2}/PKG-INFO +1 -1
- {geny_executor-2.1.1 → geny_executor-2.1.2}/pyproject.toml +1 -1
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/__init__.py +1 -1
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/anthropic.py +135 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/unit/test_anthropic_build_kwargs.py +146 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/.gitignore +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/LICENSE +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/README.md +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/README_ko.md +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/channels/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/channels/send_message_channel.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/channels/user_file_channel.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/artifact.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/builder.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/config.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/diff.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/environment.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/errors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/introspection.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/mutation.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/pipeline.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/presets.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/result.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/schema.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/shared_keys.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/slot.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/snapshot.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/core/state.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/cron/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/cron/runner.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/cron/store_abc.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/cron/store_impl/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/cron/store_impl/file_backed.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/cron/store_impl/in_memory.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/cron/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/events/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/events/bus.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/events/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/history/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/history/ab_test.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/history/cost.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/history/models.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/history/monitor.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/history/replay.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/history/service.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/hooks/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/hooks/config.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/hooks/events.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/hooks/runner.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/_cli_runtime.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/base.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/claude_code.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/credentials.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/google.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/openai.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/_canonical.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/_cli.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/vllm.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/_locks.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/_progressive.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/composite/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/composite/handles.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/composite/provider.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/composite/routing.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/composite/snapshot.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/client.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/google.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/local.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/openai.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/embedding/voyage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/factory.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/presets.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/provider.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/ephemeral.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/config.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/frontmatter.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/index_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/layout.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/ltm_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/notes_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/provider.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/snapshot.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/stm_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/timezone.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/vector_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/config.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/connection.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/index_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/ltm_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/notes_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/provider.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/schema.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/snapshot.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/stm_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/vector_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/retriever.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/strategy.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/notifications/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/notifications/registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/permission/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/permission/loader.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/permission/matrix.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/permission/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/py.typed +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/runtime/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/runtime/task_executors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/runtime/task_runner.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/security/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/security/import_validator.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/security/script_sandbox.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/session/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/session/freshness.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/session/manager.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/session/persistence.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/session/session.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/settings/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/settings/loader.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/settings/section_registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/batch/SKILL.md +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/debug/SKILL.md +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/loop/SKILL.md +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/lorem-ipsum/SKILL.md +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/simplify/SKILL.md +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/skillify/SKILL.md +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/stuck/SKILL.md +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/bundled/verify/SKILL.md +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/bundled_skills.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/fork.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/frontmatter.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/loader.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/mcp_bridge.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/path_match.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/shell_blocks.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/skill_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/skills/watcher.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/_helpers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/cancel.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/clear.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/compact.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/config.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/context.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/cost.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/help.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/memory.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/model.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/preset_info.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/status.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/built_in/tasks.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/md_template.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/parser.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/slash_commands/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/normalizers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/artifact/default/validators.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/normalizers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s01_input/validators.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/compactors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/retrievers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/compactors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/retrievers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/strategies.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s02_context/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/default/builders.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/builders.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/persona/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/persona/builder.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/persona/provider.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s03_system/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/default/guards.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/guards.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s04_guard/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s05_cache/strategies.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/_translate.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/providers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/retry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/router.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/google/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/google/providers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/openai/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/artifact/openai/providers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/providers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/retry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s06_api/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/pricing.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/artifact/default/trackers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/pricing.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s07_token/trackers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/budget.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/processors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/processors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s08_think/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/parsers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/signals.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/parsers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/signals.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s09_parse/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/executors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/routers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/executors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/persistence.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/routers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/state_mutation.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s10_tool/streaming.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/default/reviewers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s11_tool_review/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/default/orchestrators.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/orchestrators.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/subagent_type.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s12_agent/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/file_backed_registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/policies.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s13_task_registry/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/adaptive/strategy.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/strategies.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s14_evaluate/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/requesters.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/artifact/default/timeouts.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s15_hitl/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/default/controllers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/controllers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s16_loop/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/default/emitters.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/emitters.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s17_emit/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/_dehydrate.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/persistence.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/artifact/default/strategies.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/insight.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/persistence.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s18_memory/strategies.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/importance.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/artifact/default/summarizers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/frequency_policy.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s19_summarize/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/frequencies.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/persisters.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/restore.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s20_persist/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/formatters.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/multi_format.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/artifact/default/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/formatters.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/interface.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/stages/s21_yield/stage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/adhoc.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/base.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/_path_guard.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/agent_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/ask_user_question_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/bash_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/cron_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/dev_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/edit_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/glob_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/grep_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/mcp_wrapper_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/notebook_edit_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/operator_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/plan_mode_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/push_notification_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/read_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/send_message_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/task_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/todo_write_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/tool_search_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/web_fetch_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/web_search_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/worktree_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/built_in/write_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/composer.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/errors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/adapter.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/credentials.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/errors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/manager.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/oauth.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/state.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/mcp/uri.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/provider.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/providers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/sandbox.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/scope.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/tools/stage_binding.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/workspace/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/workspace/stack.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/workspace/types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/_fixtures/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/_fixtures/fake_claude.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/_fixtures/fake_echo_cli.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/conftest.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/fixtures/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/fixtures/adapter/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/fixtures/adapter/adapter.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/test_c1_six_layer_retrieval.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/test_c2_execution_recording.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/test_c3_reflection_and_promotion.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/test_c4_rest_coverage.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/test_c5_embedding_migration.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/test_c6_session_resume.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/test_c7_adapter_parity.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/completeness/test_spec_loads.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/memory_provider_contract.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_embedding_clients.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_error_codes_stability.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_auto_vector.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_composite.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_composite_routing.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_curated_global.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_ephemeral.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_factory.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_file.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_file_layout.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_file_vector.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql_dialect.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql_schema.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_memory_provider_sql_vector.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/contract/test_stage_uniformity.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/integration/test_cycle_ab_cross_import.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/integration/test_integration.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/conformance/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/conformance/harness.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/conformance/test_anthropic.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/conformance/test_claude_code_cli.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/conformance/test_google.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/conformance/test_openai.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/conformance/test_vllm.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/unit/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/unit/test_claude_code.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/unit/test_cli_runtime.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/unit/test_credentials.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/unit/test_translators_cli_claude_code.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/__init__.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_adaptive_model_router.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_adaptive_thinking_budget.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_adhoc_providers.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_agent_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_artifact_metadata.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_ask_user_question_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_binary_classify_manifest.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_built_in_autoregister.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_builtin_capabilities.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_builtin_features.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_composite_set_hooks.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_cron_runner.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_cron_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_cron_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_dev_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_dynamic_persona_builder.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_errors_categories.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_evaluation_chain.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_fork_multi_provider.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_hierarchical_sidecars.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_hook_in_process.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_hook_runner.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_hooks_and_shared_keys.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_index_list_categories.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_index_render_vault_map.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_interaction_fields.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_introspection.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_llm_client_base.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_llm_client_capabilities.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_llm_client_registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_llm_client_request_types.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_llm_client_state.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_llm_summary_compactor.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_loop_agnostic_lock.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_manifest_provider_validation.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_manifest_v2.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_manifest_v3_migration.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_mcp_annotations_attach.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_mcp_credential_store.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_mcp_fsm.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_mcp_lifecycle.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_mcp_namespace.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_mcp_oauth.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_mcp_prompts_skills_bridge.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_mcp_resource_retriever.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_mcp_uri.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_mcp_wrapper_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_memory_aware_retriever.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_memory_hooks_after_callbacks.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_memory_metadata_extension.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_multi_dim_budget_controller.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_multi_format_yield.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_multi_provider.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_multimodal.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_note_graph_queries.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_notebook_edit_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_notes_load_pinned.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_operator_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_ordered_emitter_chain.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_permission_matrix.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_permission_mode_promotions.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase1_foundation.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase1_pipeline.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase2_agent_loop.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase2_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase3_context_memory.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase4_think_agent_evaluate.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase5_emit_presets_mcp.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase5_environment.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase6_history.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase6_integration.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase7_security.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase9a_preset_regen.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_phase9a_scaffolding.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_pipeline_attach_runtime.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_pipeline_from_manifest.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_pipeline_session_runtime.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_plan_mode_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_progressive_disclosure.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_provider_driven_strategy.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_push_notification_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_refresh_backlinks_extension.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_resolve_model_config.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_runtime_task_runner.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s06_provider_selection.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s13_file_backed_registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s13_task_registry_output.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s19_frequency_policy.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s9b1_tool_review.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s9b2_task_registry.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s9b3_hitl.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s9b4_summarize.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s9b5_persist.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s9c1_pipeline_resume.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_s9c2_restore_state.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_send_message_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_settings_loader.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_1.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_2.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_3.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_4_bundled.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_5_fork.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_6_killer.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_skill_phase_10_7_watcher.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_skill_richer_schema.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_skill_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_skills_foundation.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_slash_built_in_control.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_slash_built_in_introspection.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_slash_commands.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_slash_md_template.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_stage10_hook_wiring.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_stage10_partition_executor.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_stage10_permission_matrix.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_stage19_session_summary.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_state_mutation_wiring.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_state_shared_and_local.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_stm_append_event.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_streaming_tool_executor.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_structured_output_parser.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_structured_reflection.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_subagent_credential_propagation.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_subagent_descriptor.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_subagent_orchestrator_zero_arg.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_subagent_parallel.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_subagent_type_orchestrator.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_task_tools.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_todo_write_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_tool_abc_uplift.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_tool_call_events.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_tool_errors.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_tool_lifecycle_hooks.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_tool_provider.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_tool_result_persistence.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_tool_search_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_tool_stage_max_concurrency.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_web_fetch_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_web_search_tool.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_workspace.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_workspace_propagation.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/tests/unit/test_workspace_tools_integration.py +0 -0
- {geny_executor-2.1.1 → geny_executor-2.1.2}/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.2
|
|
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.2"
|
|
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"
|
|
@@ -77,6 +77,80 @@ _THINKING_INCOMPATIBLE_SAMPLING_KEYS: tuple[str, ...] = (
|
|
|
77
77
|
)
|
|
78
78
|
|
|
79
79
|
|
|
80
|
+
# ── Models that reject sampling params unconditionally ──────────────
|
|
81
|
+
#
|
|
82
|
+
# Some models (currently the Opus 4.7 family — the only one verified
|
|
83
|
+
# against the live API in 2.1.2) reject ``temperature`` regardless of
|
|
84
|
+
# whether ``thinking`` is set. The error reads
|
|
85
|
+
# ``temperature is deprecated for this model.`` from
|
|
86
|
+
# ``api.anthropic.com``. The model is designed around fixed-sampler
|
|
87
|
+
# inference; the sampling kwargs become noise the API explicitly
|
|
88
|
+
# refuses.
|
|
89
|
+
#
|
|
90
|
+
# The set is keyed by the **resolved** canonical ID (so aliases get
|
|
91
|
+
# expanded first, see ``_resolve_anthropic_model``). Match is
|
|
92
|
+
# prefix-based — ``"claude-opus-4-7"`` covers any future
|
|
93
|
+
# ``claude-opus-4-7-20yyyymmdd`` pinned variant without needing an
|
|
94
|
+
# update here.
|
|
95
|
+
#
|
|
96
|
+
# AdaptiveModelRouter auto-promotes to Opus when ``thinking_enabled``
|
|
97
|
+
# is True (see ``stages/s06_api/artifact/default/router.py``), so an
|
|
98
|
+
# env that never sees Opus in its config can still hit this code
|
|
99
|
+
# path indirectly. The drop has to live at the boundary, not the
|
|
100
|
+
# router.
|
|
101
|
+
_TEMPERATURE_DEPRECATED_PREFIXES: tuple[str, ...] = (
|
|
102
|
+
"claude-opus-4-7",
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
def _model_rejects_sampling_params(model: str) -> bool:
|
|
107
|
+
"""True iff ``model`` (canonical ID) belongs to a family that
|
|
108
|
+
unconditionally rejects ``temperature``/``top_p``/``top_k``."""
|
|
109
|
+
return any(
|
|
110
|
+
model.startswith(prefix) for prefix in _TEMPERATURE_DEPRECATED_PREFIXES
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
# ── Last-line retry on a deprecation 400 ────────────────────────────
|
|
115
|
+
#
|
|
116
|
+
# Future Anthropic releases will deprecate more sampling params for
|
|
117
|
+
# more models; the static prefix list above will go stale. When the
|
|
118
|
+
# API surfaces the deprecation error we strip the offending field
|
|
119
|
+
# and retry once. Captures the same exact 400 strings Anthropic emits
|
|
120
|
+
# (sometimes wrapped in backticks, sometimes not).
|
|
121
|
+
_DEPRECATION_MSG_TO_KWARG_KEY: Dict[str, str] = {
|
|
122
|
+
"temperature is deprecated": "temperature",
|
|
123
|
+
"`temperature` is deprecated": "temperature",
|
|
124
|
+
"top_p is deprecated": "top_p",
|
|
125
|
+
"`top_p` is deprecated": "top_p",
|
|
126
|
+
"top_k is deprecated": "top_k",
|
|
127
|
+
"`top_k` is deprecated": "top_k",
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
def _retry_kwargs_after_deprecation(
|
|
132
|
+
kwargs: Dict[str, Any], exc: BaseException,
|
|
133
|
+
) -> Optional[Dict[str, Any]]:
|
|
134
|
+
"""If ``exc`` is the Anthropic deprecation 400 for a sampling
|
|
135
|
+
field we recognise, return a copy of ``kwargs`` with that field
|
|
136
|
+
removed. ``None`` means *don't retry* — let the caller re-raise.
|
|
137
|
+
|
|
138
|
+
Defends against future model deprecations the static prefix list
|
|
139
|
+
in ``_TEMPERATURE_DEPRECATED_PREFIXES`` doesn't know about yet.
|
|
140
|
+
Only retries once per send (the caller guarantees this by not
|
|
141
|
+
calling us recursively); if the retry also 400s the outer
|
|
142
|
+
handler classifies and raises.
|
|
143
|
+
"""
|
|
144
|
+
msg = str(getattr(exc, "message", "") or exc)
|
|
145
|
+
msg_lower = msg.lower()
|
|
146
|
+
for needle, key in _DEPRECATION_MSG_TO_KWARG_KEY.items():
|
|
147
|
+
if needle in msg_lower and key in kwargs:
|
|
148
|
+
retry = dict(kwargs)
|
|
149
|
+
retry.pop(key, None)
|
|
150
|
+
return retry
|
|
151
|
+
return None
|
|
152
|
+
|
|
153
|
+
|
|
80
154
|
class AnthropicClient(BaseClient):
|
|
81
155
|
"""Real Anthropic API client using the official SDK."""
|
|
82
156
|
|
|
@@ -138,6 +212,26 @@ class AnthropicClient(BaseClient):
|
|
|
138
212
|
raw_response = await client.messages.create(**kwargs)
|
|
139
213
|
return self._parse_response(raw_response)
|
|
140
214
|
except Exception as e:
|
|
215
|
+
# Retry-on-deprecation safety net. The static prefix list
|
|
216
|
+
# in ``_TEMPERATURE_DEPRECATED_PREFIXES`` will go stale as
|
|
217
|
+
# Anthropic deprecates more sampling params for more
|
|
218
|
+
# models. When the API explicitly tells us a sampling
|
|
219
|
+
# param is the problem, strip it and retry once. Beats
|
|
220
|
+
# a hard error on a model whose prefix we don't know yet.
|
|
221
|
+
retry_kwargs = _retry_kwargs_after_deprecation(kwargs, e)
|
|
222
|
+
if retry_kwargs is not None:
|
|
223
|
+
logger.info(
|
|
224
|
+
"anthropic: retrying %s after deprecation 400 with "
|
|
225
|
+
"%r dropped (model=%r)",
|
|
226
|
+
purpose or "messages.create",
|
|
227
|
+
sorted(set(kwargs) - set(retry_kwargs)),
|
|
228
|
+
retry_kwargs.get("model"),
|
|
229
|
+
)
|
|
230
|
+
try:
|
|
231
|
+
raw_response = await client.messages.create(**retry_kwargs)
|
|
232
|
+
return self._parse_response(raw_response)
|
|
233
|
+
except Exception as inner:
|
|
234
|
+
raise self._classify_error(inner) from inner
|
|
141
235
|
raise self._classify_error(e) from e
|
|
142
236
|
|
|
143
237
|
async def create_message_stream(
|
|
@@ -176,6 +270,32 @@ class AnthropicClient(BaseClient):
|
|
|
176
270
|
"response": self._parse_response(final),
|
|
177
271
|
}
|
|
178
272
|
except Exception as e:
|
|
273
|
+
# Same retry-on-deprecation safety net as ``_send``. The
|
|
274
|
+
# SDK validates kwargs eagerly inside the ``stream``
|
|
275
|
+
# context manager, so the deprecation 400 surfaces before
|
|
276
|
+
# any tokens reach the caller — safe to retry once with
|
|
277
|
+
# the offending field dropped.
|
|
278
|
+
retry_kwargs = _retry_kwargs_after_deprecation(kwargs, e)
|
|
279
|
+
if retry_kwargs is not None:
|
|
280
|
+
logger.info(
|
|
281
|
+
"anthropic: retrying %s after deprecation 400 with "
|
|
282
|
+
"%r dropped (model=%r)",
|
|
283
|
+
purpose or "messages.stream",
|
|
284
|
+
sorted(set(kwargs) - set(retry_kwargs)),
|
|
285
|
+
retry_kwargs.get("model"),
|
|
286
|
+
)
|
|
287
|
+
try:
|
|
288
|
+
async with client.messages.stream(**retry_kwargs) as stream:
|
|
289
|
+
async for text in stream.text_stream:
|
|
290
|
+
yield {"type": "text_delta", "text": text}
|
|
291
|
+
final = await stream.get_final_message()
|
|
292
|
+
yield {
|
|
293
|
+
"type": "message_complete",
|
|
294
|
+
"response": self._parse_response(final),
|
|
295
|
+
}
|
|
296
|
+
return
|
|
297
|
+
except Exception as inner:
|
|
298
|
+
raise self._classify_error(inner) from inner
|
|
179
299
|
raise self._classify_error(e) from e
|
|
180
300
|
|
|
181
301
|
def _build_kwargs(self, request: APIRequest) -> Dict[str, Any]:
|
|
@@ -232,6 +352,21 @@ class AnthropicClient(BaseClient):
|
|
|
232
352
|
key, dropped,
|
|
233
353
|
)
|
|
234
354
|
|
|
355
|
+
# Model-level unconditional rejection — see
|
|
356
|
+
# ``_TEMPERATURE_DEPRECATED_PREFIXES`` at module top. Opus 4.7
|
|
357
|
+
# refuses ``temperature`` regardless of whether ``thinking`` is
|
|
358
|
+
# set; without this drop, ``AdaptiveModelRouter`` promoting a
|
|
359
|
+
# thinking-enabled call to Opus 4.7 would still 400.
|
|
360
|
+
if _model_rejects_sampling_params(resolved_model):
|
|
361
|
+
for key in _THINKING_INCOMPATIBLE_SAMPLING_KEYS:
|
|
362
|
+
if key in kwargs:
|
|
363
|
+
dropped = kwargs.pop(key)
|
|
364
|
+
logger.info(
|
|
365
|
+
"anthropic: dropped %r=%r — model %r refuses "
|
|
366
|
+
"this sampling param unconditionally",
|
|
367
|
+
key, dropped, resolved_model,
|
|
368
|
+
)
|
|
369
|
+
|
|
235
370
|
return kwargs
|
|
236
371
|
|
|
237
372
|
def _parse_response(self, raw: Any) -> APIResponse:
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/tests/llm_client/unit/test_anthropic_build_kwargs.py
RENAMED
|
@@ -27,7 +27,10 @@ import pytest
|
|
|
27
27
|
from geny_executor.llm_client.anthropic import (
|
|
28
28
|
AnthropicClient,
|
|
29
29
|
_ANTHROPIC_MODEL_ALIASES,
|
|
30
|
+
_TEMPERATURE_DEPRECATED_PREFIXES,
|
|
31
|
+
_model_rejects_sampling_params,
|
|
30
32
|
_resolve_anthropic_model,
|
|
33
|
+
_retry_kwargs_after_deprecation,
|
|
31
34
|
)
|
|
32
35
|
from geny_executor.llm_client.types import APIRequest
|
|
33
36
|
|
|
@@ -173,3 +176,146 @@ def test_build_kwargs_alias_resolution_and_thinking_drop_together() -> None:
|
|
|
173
176
|
assert kwargs["model"] == "claude-opus-4-7"
|
|
174
177
|
assert "temperature" not in kwargs
|
|
175
178
|
assert kwargs["thinking"]["budget_tokens"] == 12000
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
# ── 2.1.2 — Opus 4.7 unconditional sampling-param rejection ───────
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
def test_model_rejects_sampling_params_for_opus_4_7():
|
|
185
|
+
assert _model_rejects_sampling_params("claude-opus-4-7") is True
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
def test_model_rejects_sampling_params_for_dated_opus_4_7_variant():
|
|
189
|
+
"""Prefix match covers future pinned variants without a code
|
|
190
|
+
change — ``claude-opus-4-7-20yyyymmdd`` for any date."""
|
|
191
|
+
assert _model_rejects_sampling_params("claude-opus-4-7-20260101") is True
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
@pytest.mark.parametrize(
|
|
195
|
+
"model",
|
|
196
|
+
["claude-sonnet-4-6", "claude-haiku-4-5-20251001", "claude-opus-4-6"],
|
|
197
|
+
)
|
|
198
|
+
def test_model_rejects_sampling_params_false_for_non_opus_4_7(model: str) -> None:
|
|
199
|
+
assert _model_rejects_sampling_params(model) is False
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
def test_build_kwargs_drops_temperature_for_opus_4_7_without_thinking() -> None:
|
|
203
|
+
"""The big one for 2.1.2 — Opus 4.7 refuses temperature
|
|
204
|
+
regardless of whether ``thinking`` is set. AdaptiveModelRouter
|
|
205
|
+
auto-promotes thinking calls to Opus, but a plain call to Opus
|
|
206
|
+
(e.g. memory_distill) must also drop temperature."""
|
|
207
|
+
client = AnthropicClient(api_key="sk-mock")
|
|
208
|
+
kwargs = client._build_kwargs(_req(
|
|
209
|
+
model="claude-opus-4-7",
|
|
210
|
+
temperature=0.0,
|
|
211
|
+
# no thinking
|
|
212
|
+
))
|
|
213
|
+
assert "temperature" not in kwargs
|
|
214
|
+
assert kwargs["model"] == "claude-opus-4-7"
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
def test_build_kwargs_drops_all_three_for_opus_4_7() -> None:
|
|
218
|
+
client = AnthropicClient(api_key="sk-mock")
|
|
219
|
+
kwargs = client._build_kwargs(_req(
|
|
220
|
+
model="claude-opus-4-7",
|
|
221
|
+
temperature=0.5,
|
|
222
|
+
top_p=0.9,
|
|
223
|
+
top_k=20,
|
|
224
|
+
))
|
|
225
|
+
for blocked in ("temperature", "top_p", "top_k"):
|
|
226
|
+
assert blocked not in kwargs
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
def test_build_kwargs_drops_temperature_after_alias_resolves_to_opus_4_7() -> None:
|
|
230
|
+
"""An env that pins ``opus`` (alias) should drop temperature
|
|
231
|
+
after resolution to the canonical ``claude-opus-4-7``."""
|
|
232
|
+
client = AnthropicClient(api_key="sk-mock")
|
|
233
|
+
kwargs = client._build_kwargs(_req(
|
|
234
|
+
model="opus",
|
|
235
|
+
temperature=0.2,
|
|
236
|
+
))
|
|
237
|
+
assert kwargs["model"] == "claude-opus-4-7"
|
|
238
|
+
assert "temperature" not in kwargs
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
def test_sonnet_4_6_keeps_temperature_when_no_thinking() -> None:
|
|
242
|
+
"""Regression — only Opus 4.7 (and prefix variants) belong in
|
|
243
|
+
``_TEMPERATURE_DEPRECATED_PREFIXES``. Sonnet / Haiku still accept
|
|
244
|
+
temperature."""
|
|
245
|
+
client = AnthropicClient(api_key="sk-mock")
|
|
246
|
+
kwargs = client._build_kwargs(_req(
|
|
247
|
+
model="claude-sonnet-4-6",
|
|
248
|
+
temperature=0.7,
|
|
249
|
+
))
|
|
250
|
+
assert kwargs["temperature"] == 0.7
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
# ── 2.1.2 — Retry-on-deprecation safety net ───────────────────────
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
def test_retry_kwargs_strips_temperature_on_known_400_message() -> None:
|
|
257
|
+
"""The exact phrasing Anthropic sent on 2026-06-04 for Opus 4.7."""
|
|
258
|
+
class _Fake400:
|
|
259
|
+
message = (
|
|
260
|
+
"Error code: 400 - {'type': 'error', 'error': {'type': "
|
|
261
|
+
"'invalid_request_error', 'message': "
|
|
262
|
+
"'temperature is deprecated for this model.'}}"
|
|
263
|
+
)
|
|
264
|
+
|
|
265
|
+
kwargs = {
|
|
266
|
+
"model": "claude-opus-4-7",
|
|
267
|
+
"messages": [{"role": "user", "content": "x"}],
|
|
268
|
+
"max_tokens": 1024,
|
|
269
|
+
"temperature": 0.0,
|
|
270
|
+
}
|
|
271
|
+
retry = _retry_kwargs_after_deprecation(kwargs, _Fake400())
|
|
272
|
+
assert retry is not None
|
|
273
|
+
assert "temperature" not in retry
|
|
274
|
+
# Other fields survive
|
|
275
|
+
assert retry["model"] == "claude-opus-4-7"
|
|
276
|
+
assert retry["max_tokens"] == 1024
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
def test_retry_kwargs_strips_backticked_field_name() -> None:
|
|
280
|
+
"""Some Anthropic error payloads wrap the field name in
|
|
281
|
+
backticks (``\`temperature\` is deprecated``)."""
|
|
282
|
+
class _Fake400:
|
|
283
|
+
message = "`temperature` is deprecated for this model."
|
|
284
|
+
|
|
285
|
+
kwargs = {"model": "claude-opus-4-7", "temperature": 0.5, "max_tokens": 100}
|
|
286
|
+
retry = _retry_kwargs_after_deprecation(kwargs, _Fake400())
|
|
287
|
+
assert retry is not None
|
|
288
|
+
assert "temperature" not in retry
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
def test_retry_kwargs_strips_top_p_when_that_is_the_deprecation() -> None:
|
|
292
|
+
class _Fake400:
|
|
293
|
+
message = "top_p is deprecated for this model."
|
|
294
|
+
|
|
295
|
+
kwargs = {"model": "claude-x", "top_p": 0.9, "temperature": 0.5, "max_tokens": 100}
|
|
296
|
+
retry = _retry_kwargs_after_deprecation(kwargs, _Fake400())
|
|
297
|
+
assert retry is not None
|
|
298
|
+
assert "top_p" not in retry
|
|
299
|
+
# Other sampling params survive — only the field named in the
|
|
300
|
+
# error message gets stripped.
|
|
301
|
+
assert retry["temperature"] == 0.5
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
def test_retry_kwargs_returns_none_for_unrelated_error() -> None:
|
|
305
|
+
"""Non-deprecation errors must not trigger the retry path —
|
|
306
|
+
let the caller re-raise with the original classification."""
|
|
307
|
+
class _SomeOther:
|
|
308
|
+
message = "rate limit exceeded"
|
|
309
|
+
|
|
310
|
+
kwargs = {"model": "claude-x", "temperature": 0.5, "max_tokens": 100}
|
|
311
|
+
assert _retry_kwargs_after_deprecation(kwargs, _SomeOther()) is None
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
def test_retry_kwargs_returns_none_when_field_already_absent() -> None:
|
|
315
|
+
"""Deprecation said temperature, but kwargs doesn't have it —
|
|
316
|
+
nothing to strip, so don't loop."""
|
|
317
|
+
class _Fake400:
|
|
318
|
+
message = "temperature is deprecated for this model."
|
|
319
|
+
|
|
320
|
+
kwargs = {"model": "claude-x", "max_tokens": 100}
|
|
321
|
+
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.1 → geny_executor-2.1.2}/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.1 → geny_executor-2.1.2}/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.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/llm_client/translators/_canonical.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/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.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/config.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/frontmatter.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/index_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/layout.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/ltm_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/notes_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/provider.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/snapshot.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/stm_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/timezone.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/file/vector_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/__init__.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/config.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/connection.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/index_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/ltm_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/notes_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/provider.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/schema.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/snapshot.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/src/geny_executor/memory/providers/sql/stm_store.py
RENAMED
|
File without changes
|
{geny_executor-2.1.1 → geny_executor-2.1.2}/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
|