oh-my-opencode 4.19.3 → 5.0.0-beta.1
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.
- package/.agents/command/get-unpublished-changes.md +2 -0
- package/.agents/command/omomomo.md +1 -1
- package/.agents/command/publish.md +7 -0
- package/.agents/skills/get-unpublished-changes/SKILL.md +2 -0
- package/.agents/skills/hyperplan/SKILL.md +3 -3
- package/.agents/skills/omomomo/SKILL.md +1 -1
- package/.agents/skills/publish/SKILL.md +7 -0
- package/.opencode/command/get-unpublished-changes.md +2 -0
- package/.opencode/command/omomomo.md +1 -1
- package/.opencode/command/publish.md +7 -0
- package/.opencode/skills/hyperplan/SKILL.md +3 -3
- package/README.ja.md +1 -1
- package/README.ko.md +1 -1
- package/README.md +6 -5
- package/README.ru.md +1 -1
- package/README.zh-cn.md +1 -1
- package/bin/oh-my-opencode.js +14 -1
- package/bin/oh-my-opencode.test.ts +21 -0
- package/dist/agents/sisyphus-junior/agent.d.ts +1 -1
- package/dist/cli/doctor/checks/deprecated-reasoning-keys.d.ts +2 -0
- package/dist/cli/index.js +2925 -1919
- package/dist/cli-node/index.js +2925 -1919
- package/dist/config/schema/agent-overrides.d.ts +1343 -15
- package/dist/config/schema/categories.d.ts +132 -0
- package/dist/config/schema/fallback-models.d.ts +50 -0
- package/dist/config/schema/oh-my-opencode-config.d.ts +1322 -11
- package/dist/config-migration/index.d.ts +1 -0
- package/dist/config-migration/migration-plans.d.ts +1 -0
- package/dist/config-migration/reasoning-unification.d.ts +3 -0
- package/dist/features/monitor/batcher.d.ts +3 -1
- package/dist/features/monitor/manager-internals.d.ts +1 -0
- package/dist/features/monitor/output-injector-types.d.ts +2 -0
- package/dist/features/monitor/output-injector.d.ts +6 -0
- package/dist/features/team-mode/tools/lifecycle-test-fixture.d.ts +2 -0
- package/dist/hooks/codegraph-bootstrap/command-runner.d.ts +1 -0
- package/dist/hooks/model-fallback/next-fallback.d.ts +1 -0
- package/dist/hooks/runtime-fallback/constants.d.ts +1 -1
- package/dist/hooks/todo-continuation-enforcer/types.d.ts +1 -0
- package/dist/hooks/todo-continuation-enforcer/unrecoverable-request-error.d.ts +9 -0
- package/dist/hooks/tool-pair-validator/hook.test-support.d.ts +29 -0
- package/dist/hooks/tool-pair-validator/tool-part-ids.d.ts +14 -5
- package/dist/hooks/tool-pair-validator/tool-result-repair.d.ts +4 -3
- package/dist/hooks/tool-pair-validator/types.d.ts +5 -22
- package/dist/index.js +4864 -4011
- package/dist/mcp/lsp.d.ts +1 -0
- package/dist/oh-my-opencode.schema.json +3221 -222
- package/dist/plugin-handlers/prometheus-agent-config-builder.d.ts +1 -0
- package/dist/shared/agent-variant.d.ts +11 -0
- package/dist/shared/session-prompt-params-helpers.d.ts +6 -1
- package/dist/shared/tmux/constants.d.ts +1 -1
- package/dist/skills/ast-grep/SOURCE +1 -1
- package/dist/skills/ast-grep/install.ps1 +2 -2
- package/dist/skills/ast-grep/install.sh +1 -1
- package/dist/skills/ast-grep/references/install.md +2 -2
- package/dist/skills/ast-grep/tests/smoke.sh +1 -1
- package/dist/skills/coding-agent-sessions/SKILL.md +4 -3
- package/dist/skills/coding-agent-sessions/references/all-platforms.md +3 -1
- package/dist/skills/coding-agent-sessions/scripts/agent_sessions/aside_scanner.py +140 -0
- package/dist/skills/coding-agent-sessions/scripts/agent_sessions/scanners.py +3 -0
- package/dist/skills/data-scientist/SKILL.md +243 -0
- package/dist/skills/data-scientist/references/common-scenarios.md +176 -0
- package/dist/skills/data-scientist/references/execution-templates.md +197 -0
- package/dist/skills/data-scientist/references/integration-patterns.md +153 -0
- package/dist/skills/data-scientist/references/performance-benchmarks.md +37 -0
- package/dist/skills/data-scientist/references/uv-setup.md +78 -0
- package/dist/skills/data-scientist/scripts/quick-query.py +111 -0
- package/dist/skills/data-scientist/scripts/setup-uv.ps1 +53 -0
- package/dist/skills/data-scientist/scripts/setup-uv.sh +60 -0
- package/dist/skills/debugging/SKILL.md +1 -1
- package/dist/skills/programming/SKILL.md +1 -2
- package/dist/skills/start-work/SKILL.md +54 -9
- package/dist/skills/ultimate-browsing/SKILL.md +2 -2
- package/dist/skills/ultimate-browsing/engine/__main__.py +8 -1
- package/dist/skills/ultimate-browsing/engine/bias_check.py +11 -0
- package/dist/skills/ultimate-browsing/engine/fetch_chain.py +90 -52
- package/dist/skills/ultimate-browsing/engine/result_schema.py +10 -1
- package/dist/skills/ultimate-browsing/engine/surrogate.py +214 -0
- package/dist/skills/ultimate-browsing/engine/surrogates.yaml +60 -0
- package/dist/skills/ultimate-browsing/engine/tests/fixtures/amp_redirect_stub.html +7 -0
- package/dist/skills/ultimate-browsing/engine/tests/fixtures/search_interstitial.html +19 -0
- package/dist/skills/ultimate-browsing/engine/tests/fixtures/wayback_available.json +1 -0
- package/dist/skills/ultimate-browsing/engine/tests/fixtures/wayback_snapshot.html +1128 -0
- package/dist/skills/ultimate-browsing/engine/tests/test_surrogate.py +252 -0
- package/dist/skills/ultimate-browsing/engine/tests/test_surrogate_validators.py +78 -0
- package/dist/skills/ultimate-browsing/engine/validators.py +46 -0
- package/dist/skills/ultimate-browsing/engine/waf_detector.py +1 -1
- package/dist/skills/ultimate-browsing/engine/waf_profiles.yaml +10 -5
- package/dist/skills/ultimate-browsing/references/agent-reach/social.md +1 -1
- package/dist/skills/ultimate-browsing/references/chrome-stealth.md +13 -11
- package/dist/skills/ultimate-browsing/references/insane-search/README.md +4 -4
- package/dist/skills/ultimate-browsing/references/insane-search/cache-archive.md +51 -50
- package/dist/skills/ultimate-browsing/references/insane-search/fallback.md +1 -1
- package/dist/skills/ultimate-browsing/references/insane-search/jina.md +8 -2
- package/dist/skills/ultimate-browsing/references/insane-search/naver.md +1 -1
- package/dist/skills/ultimate-browsing/references/insane-search/twitter.md +3 -3
- package/dist/skills/ulw-plan/SKILL.md +2 -2
- package/dist/skills/ulw-plan/references/full-workflow.md +3 -3
- package/dist/skills/ulw-plan/scripts/scaffold-plan.mjs +1 -1
- package/dist/skills/ulw-research/SKILL.md +128 -12
- package/dist/tools/delegate-task/builtin-categories.d.ts +1 -0
- package/dist/tools/delegate-task/builtin-category-definition.d.ts +1 -0
- package/dist/tools/delegate-task/constants.d.ts +1 -1
- package/dist/tui.js +1271 -1108
- package/docs/reference/web-terminal-visual-qa.md +1 -1
- package/package.json +27 -19
- package/packages/lsp-core/src/lsp/client-diagnostics-freshness.integration.test.ts +2 -2
- package/packages/lsp-core/src/lsp/connection.ts +1 -1
- package/packages/lsp-daemon/dist/cli.js +27 -13
- package/packages/lsp-daemon/dist/client.js +49 -35
- package/packages/lsp-daemon/dist/ensure-daemon.d.ts +1 -0
- package/packages/lsp-daemon/dist/ensure-daemon.js +18 -5
- package/packages/lsp-daemon/dist/index.js +34 -20
- package/packages/lsp-tools-mcp/dist/cli.js +1 -1
- package/packages/lsp-tools-mcp/dist/lsp/manager.js +1 -1
- package/packages/lsp-tools-mcp/dist/mcp.js +1 -1
- package/packages/lsp-tools-mcp/dist/tools.js +1 -1
- package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/dist/cli.js +289 -95
- package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/src/setup.ts +7 -7
- package/packages/omo-codex/plugin/components/bootstrap/src/worker.ts +3 -0
- package/packages/omo-codex/plugin/components/codegraph/dist/cli.js +385 -64
- package/packages/omo-codex/plugin/components/codegraph/dist/serve.js +336 -47
- package/packages/omo-codex/plugin/components/codegraph/package.json +1 -1
- package/packages/omo-codex/plugin/components/codegraph/test/hook.test.ts +6 -0
- package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
- package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
- package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +3 -3
- package/packages/omo-codex/plugin/components/lsp/dist/cli.js +56 -42
- package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
- package/packages/omo-codex/plugin/components/rules/dist/cli.js +1 -1
- package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/rules/package.json +1 -1
- package/packages/omo-codex/plugin/components/rules/src/post-compact-budget.ts +1 -1
- package/packages/omo-codex/plugin/components/start-work-continuation/AGENTS.md +1 -0
- package/packages/omo-codex/plugin/components/start-work-continuation/README.md +5 -1
- package/packages/omo-codex/plugin/components/start-work-continuation/directive.md +2 -1
- package/packages/omo-codex/plugin/components/start-work-continuation/dist/cli.js +18 -0
- package/packages/omo-codex/plugin/components/start-work-continuation/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/start-work-continuation/package.json +1 -1
- package/packages/omo-codex/plugin/components/start-work-continuation/src/codex-hook.ts +21 -0
- package/packages/omo-codex/plugin/components/start-work-continuation/test/codex-hook.test.ts +105 -0
- package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/package.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/CHANGELOG.md +2 -0
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-code-reviewer.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-gate-reviewer.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-qa-executor.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-high.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-low.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/lazycodex-worker-medium.toml +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/agents/plan.toml +2 -2
- package/packages/omo-codex/plugin/components/ultrawork/directive.md +3 -2
- package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/skills/ultrawork/SKILL.md +3 -2
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/SKILL.md +2 -2
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/references/full-workflow.md +3 -3
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/scripts/scaffold-plan.mjs +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/AGENTS.md +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/CHANGELOG.md +2 -0
- package/packages/omo-codex/plugin/components/ulw-loop/README.md +11 -11
- package/packages/omo-codex/plugin/components/ulw-loop/directive.md +3 -2
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-reconciliation.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.d.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-output.js +9 -9
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli-steering.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli.js +66 -66
- package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-goal-instruction.js +4 -4
- package/packages/omo-codex/plugin/components/ulw-loop/dist/codex-hook.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-crud.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/plan-io.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/steering.js +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/stop-resume-hook.js +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/SKILL.md +3 -3
- package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/full-workflow.md +22 -25
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-reconciliation.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-output.ts +9 -9
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli-steering.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/cli.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/codex-goal-instruction.ts +4 -4
- package/packages/omo-codex/plugin/components/ulw-loop/src/codex-hook.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/plan-crud.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/plan-io.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/steering.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/stop-resume-hook.ts +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-commands.test.ts +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-entrypoint.test.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-helpers.test.ts +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/test/cli-steering-kind-guidance.test.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/codex-hook.test.ts +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/test/fixtures/quality-gate-builder.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/package-smoke.test.ts +5 -5
- package/packages/omo-codex/plugin/components/ulw-loop/test/plan-io.test.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-roles.test.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/steering.test.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/test/stop-resume-hook.test.ts +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-codegraph-init-guidance.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-guarding-ulw-loop-spawns.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-codegraph-bootstrap.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-start-work-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-ulw-loop-resume.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-checking-start-work-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/package-lock.json +13 -13
- package/packages/omo-codex/plugin/package.json +1 -1
- package/packages/omo-codex/plugin/scripts/sync-skills.mjs +8 -2
- package/packages/omo-codex/plugin/skills/ast-grep/SOURCE +1 -1
- package/packages/omo-codex/plugin/skills/ast-grep/install.ps1 +2 -2
- package/packages/omo-codex/plugin/skills/ast-grep/install.sh +1 -1
- package/packages/omo-codex/plugin/skills/ast-grep/references/install.md +2 -2
- package/packages/omo-codex/plugin/skills/ast-grep/tests/smoke.sh +1 -1
- package/packages/omo-codex/plugin/skills/coding-agent-sessions/SKILL.md +4 -3
- package/packages/omo-codex/plugin/skills/coding-agent-sessions/references/all-platforms.md +3 -1
- package/packages/omo-codex/plugin/skills/coding-agent-sessions/scripts/agent_sessions/aside_scanner.py +140 -0
- package/packages/omo-codex/plugin/skills/coding-agent-sessions/scripts/agent_sessions/scanners.py +3 -0
- package/packages/omo-codex/plugin/skills/data-scientist/SKILL.md +243 -0
- package/packages/omo-codex/plugin/skills/data-scientist/agents/openai.yaml +2 -0
- package/packages/omo-codex/plugin/skills/data-scientist/references/common-scenarios.md +176 -0
- package/packages/omo-codex/plugin/skills/data-scientist/references/execution-templates.md +197 -0
- package/packages/omo-codex/plugin/skills/data-scientist/references/integration-patterns.md +153 -0
- package/packages/omo-codex/plugin/skills/data-scientist/references/performance-benchmarks.md +37 -0
- package/packages/omo-codex/plugin/skills/data-scientist/references/uv-setup.md +78 -0
- package/packages/omo-codex/plugin/skills/data-scientist/scripts/quick-query.py +111 -0
- package/packages/omo-codex/plugin/skills/data-scientist/scripts/setup-uv.ps1 +53 -0
- package/packages/omo-codex/plugin/skills/data-scientist/scripts/setup-uv.sh +60 -0
- package/packages/omo-codex/plugin/skills/debugging/SKILL.md +1 -1
- package/packages/omo-codex/plugin/skills/programming/SKILL.md +1 -2
- package/packages/omo-codex/plugin/skills/start-work/SKILL.md +54 -9
- package/packages/omo-codex/plugin/skills/ultimate-browsing/SKILL.md +2 -2
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/__main__.py +8 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/bias_check.py +11 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/fetch_chain.py +90 -52
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/result_schema.py +10 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/surrogate.py +214 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/surrogates.yaml +60 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/fixtures/amp_redirect_stub.html +7 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/fixtures/search_interstitial.html +19 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/fixtures/wayback_available.json +1 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/fixtures/wayback_snapshot.html +1128 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/test_surrogate.py +252 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/tests/test_surrogate_validators.py +78 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/validators.py +46 -0
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/waf_detector.py +1 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/engine/waf_profiles.yaml +10 -5
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/agent-reach/social.md +1 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/chrome-stealth.md +13 -11
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/README.md +4 -4
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/cache-archive.md +51 -50
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/fallback.md +1 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/jina.md +8 -2
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/naver.md +1 -1
- package/packages/omo-codex/plugin/skills/ultimate-browsing/references/insane-search/twitter.md +3 -3
- package/packages/omo-codex/plugin/skills/ultrawork/SKILL.md +3 -2
- package/packages/omo-codex/plugin/skills/ulw-loop/SKILL.md +3 -3
- package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +22 -25
- package/packages/omo-codex/plugin/skills/ulw-plan/SKILL.md +2 -2
- package/packages/omo-codex/plugin/skills/ulw-plan/references/full-workflow.md +3 -3
- package/packages/omo-codex/plugin/skills/ulw-plan/scripts/scaffold-plan.mjs +1 -1
- package/packages/omo-codex/plugin/skills/ulw-research/SKILL.md +127 -12
- package/packages/omo-codex/plugin/test/bootstrap-binlinks.test.mjs +12 -12
- package/packages/omo-codex/plugin/test/bootstrap-orchestration.test.mjs +36 -4
- package/packages/omo-codex/plugin/test/sync-skills-orchestration.test.mjs +1 -1
- package/packages/omo-codex/plugin/test/sync-skills-test-support.mjs +9 -2
- package/packages/omo-codex/plugin/test/sync-skills.test.mjs +12 -0
- package/packages/omo-codex/scripts/install-bin-links.test.mjs +56 -2
- package/packages/omo-codex/scripts/install-delegated-command.test.mjs +6 -6
- package/packages/omo-codex/scripts/install-dist/install-local.mjs +138 -65
- package/packages/omo-codex/scripts/install-local-entrypoint.test.mjs +4 -4
- package/packages/omo-codex/scripts/install-local.test.mjs +5 -2
- package/packages/shared-skills/index.mjs +19 -1
- package/packages/shared-skills/skills/ast-grep/SOURCE +1 -1
- package/packages/shared-skills/skills/ast-grep/install.ps1 +2 -2
- package/packages/shared-skills/skills/ast-grep/install.sh +1 -1
- package/packages/shared-skills/skills/ast-grep/references/install.md +2 -2
- package/packages/shared-skills/skills/ast-grep/tests/smoke.sh +1 -1
- package/packages/shared-skills/skills/coding-agent-sessions/SKILL.md +4 -3
- package/packages/shared-skills/skills/coding-agent-sessions/references/all-platforms.md +3 -1
- package/packages/shared-skills/skills/coding-agent-sessions/scripts/agent_sessions/aside_scanner.py +140 -0
- package/packages/shared-skills/skills/coding-agent-sessions/scripts/agent_sessions/scanners.py +3 -0
- package/packages/shared-skills/skills/data-scientist/SKILL.md +243 -0
- package/packages/shared-skills/skills/data-scientist/references/common-scenarios.md +176 -0
- package/packages/shared-skills/skills/data-scientist/references/execution-templates.md +197 -0
- package/packages/shared-skills/skills/data-scientist/references/integration-patterns.md +153 -0
- package/packages/shared-skills/skills/data-scientist/references/performance-benchmarks.md +37 -0
- package/packages/shared-skills/skills/data-scientist/references/uv-setup.md +78 -0
- package/packages/shared-skills/skills/data-scientist/scripts/quick-query.py +111 -0
- package/packages/shared-skills/skills/data-scientist/scripts/setup-uv.ps1 +53 -0
- package/packages/shared-skills/skills/data-scientist/scripts/setup-uv.sh +60 -0
- package/packages/shared-skills/skills/debugging/SKILL.md +1 -1
- package/packages/shared-skills/skills/programming/SKILL.md +1 -2
- package/packages/shared-skills/skills/start-work/SKILL.md +54 -9
- package/packages/shared-skills/skills/ultimate-browsing/SKILL.md +2 -2
- package/packages/shared-skills/skills/ultimate-browsing/engine/__main__.py +8 -1
- package/packages/shared-skills/skills/ultimate-browsing/engine/bias_check.py +11 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/fetch_chain.py +90 -52
- package/packages/shared-skills/skills/ultimate-browsing/engine/result_schema.py +10 -1
- package/packages/shared-skills/skills/ultimate-browsing/engine/surrogate.py +214 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/surrogates.yaml +60 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/fixtures/amp_redirect_stub.html +7 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/fixtures/search_interstitial.html +19 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/fixtures/wayback_available.json +1 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/fixtures/wayback_snapshot.html +1128 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/test_surrogate.py +252 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/tests/test_surrogate_validators.py +78 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/validators.py +46 -0
- package/packages/shared-skills/skills/ultimate-browsing/engine/waf_detector.py +1 -1
- package/packages/shared-skills/skills/ultimate-browsing/engine/waf_profiles.yaml +10 -5
- package/packages/shared-skills/skills/ultimate-browsing/references/agent-reach/social.md +1 -1
- package/packages/shared-skills/skills/ultimate-browsing/references/chrome-stealth.md +13 -11
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/README.md +4 -4
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/cache-archive.md +51 -50
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/fallback.md +1 -1
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/jina.md +8 -2
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/naver.md +1 -1
- package/packages/shared-skills/skills/ultimate-browsing/references/insane-search/twitter.md +3 -3
- package/packages/shared-skills/skills/ulw-plan/SKILL.md +2 -2
- package/packages/shared-skills/skills/ulw-plan/references/full-workflow.md +3 -3
- package/packages/shared-skills/skills/ulw-plan/scripts/scaffold-plan.mjs +1 -1
- package/packages/shared-skills/skills/ulw-research/SKILL.md +128 -12
- package/postinstall.mjs +6 -0
|
@@ -105,6 +105,95 @@
|
|
|
105
105
|
"model": {
|
|
106
106
|
"type": "string"
|
|
107
107
|
},
|
|
108
|
+
"models": {
|
|
109
|
+
"type": "array",
|
|
110
|
+
"items": {
|
|
111
|
+
"anyOf": [
|
|
112
|
+
{
|
|
113
|
+
"type": "string"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"type": "object",
|
|
117
|
+
"properties": {
|
|
118
|
+
"model": {
|
|
119
|
+
"type": "string"
|
|
120
|
+
},
|
|
121
|
+
"reasoning": {
|
|
122
|
+
"anyOf": [
|
|
123
|
+
{
|
|
124
|
+
"type": "string",
|
|
125
|
+
"enum": [
|
|
126
|
+
"off",
|
|
127
|
+
"minimal",
|
|
128
|
+
"low",
|
|
129
|
+
"medium",
|
|
130
|
+
"high",
|
|
131
|
+
"xhigh",
|
|
132
|
+
"max",
|
|
133
|
+
"auto"
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": "string"
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
"variant": {
|
|
142
|
+
"type": "string"
|
|
143
|
+
},
|
|
144
|
+
"reasoningEffort": {
|
|
145
|
+
"type": "string",
|
|
146
|
+
"enum": [
|
|
147
|
+
"none",
|
|
148
|
+
"minimal",
|
|
149
|
+
"low",
|
|
150
|
+
"medium",
|
|
151
|
+
"high",
|
|
152
|
+
"xhigh",
|
|
153
|
+
"max"
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
"temperature": {
|
|
157
|
+
"type": "number",
|
|
158
|
+
"minimum": 0,
|
|
159
|
+
"maximum": 2
|
|
160
|
+
},
|
|
161
|
+
"top_p": {
|
|
162
|
+
"type": "number",
|
|
163
|
+
"minimum": 0,
|
|
164
|
+
"maximum": 1
|
|
165
|
+
},
|
|
166
|
+
"maxTokens": {
|
|
167
|
+
"type": "number"
|
|
168
|
+
},
|
|
169
|
+
"thinking": {
|
|
170
|
+
"type": "object",
|
|
171
|
+
"properties": {
|
|
172
|
+
"type": {
|
|
173
|
+
"type": "string",
|
|
174
|
+
"enum": [
|
|
175
|
+
"enabled",
|
|
176
|
+
"disabled"
|
|
177
|
+
]
|
|
178
|
+
},
|
|
179
|
+
"budgetTokens": {
|
|
180
|
+
"type": "number"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"required": [
|
|
184
|
+
"type"
|
|
185
|
+
],
|
|
186
|
+
"additionalProperties": false
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"required": [
|
|
190
|
+
"model"
|
|
191
|
+
],
|
|
192
|
+
"additionalProperties": false
|
|
193
|
+
}
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
},
|
|
108
197
|
"fallback_models": {
|
|
109
198
|
"anyOf": [
|
|
110
199
|
{
|
|
@@ -124,6 +213,26 @@
|
|
|
124
213
|
"model": {
|
|
125
214
|
"type": "string"
|
|
126
215
|
},
|
|
216
|
+
"reasoning": {
|
|
217
|
+
"anyOf": [
|
|
218
|
+
{
|
|
219
|
+
"type": "string",
|
|
220
|
+
"enum": [
|
|
221
|
+
"off",
|
|
222
|
+
"minimal",
|
|
223
|
+
"low",
|
|
224
|
+
"medium",
|
|
225
|
+
"high",
|
|
226
|
+
"xhigh",
|
|
227
|
+
"max",
|
|
228
|
+
"auto"
|
|
229
|
+
]
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"type": "string"
|
|
233
|
+
}
|
|
234
|
+
]
|
|
235
|
+
},
|
|
127
236
|
"variant": {
|
|
128
237
|
"type": "string"
|
|
129
238
|
},
|
|
@@ -191,6 +300,26 @@
|
|
|
191
300
|
"model": {
|
|
192
301
|
"type": "string"
|
|
193
302
|
},
|
|
303
|
+
"reasoning": {
|
|
304
|
+
"anyOf": [
|
|
305
|
+
{
|
|
306
|
+
"type": "string",
|
|
307
|
+
"enum": [
|
|
308
|
+
"off",
|
|
309
|
+
"minimal",
|
|
310
|
+
"low",
|
|
311
|
+
"medium",
|
|
312
|
+
"high",
|
|
313
|
+
"xhigh",
|
|
314
|
+
"max",
|
|
315
|
+
"auto"
|
|
316
|
+
]
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"type": "string"
|
|
320
|
+
}
|
|
321
|
+
]
|
|
322
|
+
},
|
|
194
323
|
"variant": {
|
|
195
324
|
"type": "string"
|
|
196
325
|
},
|
|
@@ -249,6 +378,26 @@
|
|
|
249
378
|
}
|
|
250
379
|
]
|
|
251
380
|
},
|
|
381
|
+
"reasoning": {
|
|
382
|
+
"anyOf": [
|
|
383
|
+
{
|
|
384
|
+
"type": "string",
|
|
385
|
+
"enum": [
|
|
386
|
+
"off",
|
|
387
|
+
"minimal",
|
|
388
|
+
"low",
|
|
389
|
+
"medium",
|
|
390
|
+
"high",
|
|
391
|
+
"xhigh",
|
|
392
|
+
"max",
|
|
393
|
+
"auto"
|
|
394
|
+
]
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"type": "string"
|
|
398
|
+
}
|
|
399
|
+
]
|
|
400
|
+
},
|
|
252
401
|
"variant": {
|
|
253
402
|
"type": "string"
|
|
254
403
|
},
|
|
@@ -441,6 +590,26 @@
|
|
|
441
590
|
"model": {
|
|
442
591
|
"type": "string"
|
|
443
592
|
},
|
|
593
|
+
"reasoning": {
|
|
594
|
+
"anyOf": [
|
|
595
|
+
{
|
|
596
|
+
"type": "string",
|
|
597
|
+
"enum": [
|
|
598
|
+
"off",
|
|
599
|
+
"minimal",
|
|
600
|
+
"low",
|
|
601
|
+
"medium",
|
|
602
|
+
"high",
|
|
603
|
+
"xhigh",
|
|
604
|
+
"max",
|
|
605
|
+
"auto"
|
|
606
|
+
]
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"type": "string"
|
|
610
|
+
}
|
|
611
|
+
]
|
|
612
|
+
},
|
|
444
613
|
"variant": {
|
|
445
614
|
"type": "string"
|
|
446
615
|
}
|
|
@@ -453,6 +622,26 @@
|
|
|
453
622
|
"model": {
|
|
454
623
|
"type": "string"
|
|
455
624
|
},
|
|
625
|
+
"reasoning": {
|
|
626
|
+
"anyOf": [
|
|
627
|
+
{
|
|
628
|
+
"type": "string",
|
|
629
|
+
"enum": [
|
|
630
|
+
"off",
|
|
631
|
+
"minimal",
|
|
632
|
+
"low",
|
|
633
|
+
"medium",
|
|
634
|
+
"high",
|
|
635
|
+
"xhigh",
|
|
636
|
+
"max",
|
|
637
|
+
"auto"
|
|
638
|
+
]
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"type": "string"
|
|
642
|
+
}
|
|
643
|
+
]
|
|
644
|
+
},
|
|
456
645
|
"variant": {
|
|
457
646
|
"type": "string"
|
|
458
647
|
}
|
|
@@ -468,6 +657,95 @@
|
|
|
468
657
|
"model": {
|
|
469
658
|
"type": "string"
|
|
470
659
|
},
|
|
660
|
+
"models": {
|
|
661
|
+
"type": "array",
|
|
662
|
+
"items": {
|
|
663
|
+
"anyOf": [
|
|
664
|
+
{
|
|
665
|
+
"type": "string"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"type": "object",
|
|
669
|
+
"properties": {
|
|
670
|
+
"model": {
|
|
671
|
+
"type": "string"
|
|
672
|
+
},
|
|
673
|
+
"reasoning": {
|
|
674
|
+
"anyOf": [
|
|
675
|
+
{
|
|
676
|
+
"type": "string",
|
|
677
|
+
"enum": [
|
|
678
|
+
"off",
|
|
679
|
+
"minimal",
|
|
680
|
+
"low",
|
|
681
|
+
"medium",
|
|
682
|
+
"high",
|
|
683
|
+
"xhigh",
|
|
684
|
+
"max",
|
|
685
|
+
"auto"
|
|
686
|
+
]
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"type": "string"
|
|
690
|
+
}
|
|
691
|
+
]
|
|
692
|
+
},
|
|
693
|
+
"variant": {
|
|
694
|
+
"type": "string"
|
|
695
|
+
},
|
|
696
|
+
"reasoningEffort": {
|
|
697
|
+
"type": "string",
|
|
698
|
+
"enum": [
|
|
699
|
+
"none",
|
|
700
|
+
"minimal",
|
|
701
|
+
"low",
|
|
702
|
+
"medium",
|
|
703
|
+
"high",
|
|
704
|
+
"xhigh",
|
|
705
|
+
"max"
|
|
706
|
+
]
|
|
707
|
+
},
|
|
708
|
+
"temperature": {
|
|
709
|
+
"type": "number",
|
|
710
|
+
"minimum": 0,
|
|
711
|
+
"maximum": 2
|
|
712
|
+
},
|
|
713
|
+
"top_p": {
|
|
714
|
+
"type": "number",
|
|
715
|
+
"minimum": 0,
|
|
716
|
+
"maximum": 1
|
|
717
|
+
},
|
|
718
|
+
"maxTokens": {
|
|
719
|
+
"type": "number"
|
|
720
|
+
},
|
|
721
|
+
"thinking": {
|
|
722
|
+
"type": "object",
|
|
723
|
+
"properties": {
|
|
724
|
+
"type": {
|
|
725
|
+
"type": "string",
|
|
726
|
+
"enum": [
|
|
727
|
+
"enabled",
|
|
728
|
+
"disabled"
|
|
729
|
+
]
|
|
730
|
+
},
|
|
731
|
+
"budgetTokens": {
|
|
732
|
+
"type": "number"
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
"required": [
|
|
736
|
+
"type"
|
|
737
|
+
],
|
|
738
|
+
"additionalProperties": false
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
"required": [
|
|
742
|
+
"model"
|
|
743
|
+
],
|
|
744
|
+
"additionalProperties": false
|
|
745
|
+
}
|
|
746
|
+
]
|
|
747
|
+
}
|
|
748
|
+
},
|
|
471
749
|
"fallback_models": {
|
|
472
750
|
"anyOf": [
|
|
473
751
|
{
|
|
@@ -487,6 +765,26 @@
|
|
|
487
765
|
"model": {
|
|
488
766
|
"type": "string"
|
|
489
767
|
},
|
|
768
|
+
"reasoning": {
|
|
769
|
+
"anyOf": [
|
|
770
|
+
{
|
|
771
|
+
"type": "string",
|
|
772
|
+
"enum": [
|
|
773
|
+
"off",
|
|
774
|
+
"minimal",
|
|
775
|
+
"low",
|
|
776
|
+
"medium",
|
|
777
|
+
"high",
|
|
778
|
+
"xhigh",
|
|
779
|
+
"max",
|
|
780
|
+
"auto"
|
|
781
|
+
]
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"type": "string"
|
|
785
|
+
}
|
|
786
|
+
]
|
|
787
|
+
},
|
|
490
788
|
"variant": {
|
|
491
789
|
"type": "string"
|
|
492
790
|
},
|
|
@@ -554,6 +852,26 @@
|
|
|
554
852
|
"model": {
|
|
555
853
|
"type": "string"
|
|
556
854
|
},
|
|
855
|
+
"reasoning": {
|
|
856
|
+
"anyOf": [
|
|
857
|
+
{
|
|
858
|
+
"type": "string",
|
|
859
|
+
"enum": [
|
|
860
|
+
"off",
|
|
861
|
+
"minimal",
|
|
862
|
+
"low",
|
|
863
|
+
"medium",
|
|
864
|
+
"high",
|
|
865
|
+
"xhigh",
|
|
866
|
+
"max",
|
|
867
|
+
"auto"
|
|
868
|
+
]
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"type": "string"
|
|
872
|
+
}
|
|
873
|
+
]
|
|
874
|
+
},
|
|
557
875
|
"variant": {
|
|
558
876
|
"type": "string"
|
|
559
877
|
},
|
|
@@ -612,6 +930,26 @@
|
|
|
612
930
|
}
|
|
613
931
|
]
|
|
614
932
|
},
|
|
933
|
+
"reasoning": {
|
|
934
|
+
"anyOf": [
|
|
935
|
+
{
|
|
936
|
+
"type": "string",
|
|
937
|
+
"enum": [
|
|
938
|
+
"off",
|
|
939
|
+
"minimal",
|
|
940
|
+
"low",
|
|
941
|
+
"medium",
|
|
942
|
+
"high",
|
|
943
|
+
"xhigh",
|
|
944
|
+
"max",
|
|
945
|
+
"auto"
|
|
946
|
+
]
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"type": "string"
|
|
950
|
+
}
|
|
951
|
+
]
|
|
952
|
+
},
|
|
615
953
|
"variant": {
|
|
616
954
|
"type": "string"
|
|
617
955
|
},
|
|
@@ -804,6 +1142,26 @@
|
|
|
804
1142
|
"model": {
|
|
805
1143
|
"type": "string"
|
|
806
1144
|
},
|
|
1145
|
+
"reasoning": {
|
|
1146
|
+
"anyOf": [
|
|
1147
|
+
{
|
|
1148
|
+
"type": "string",
|
|
1149
|
+
"enum": [
|
|
1150
|
+
"off",
|
|
1151
|
+
"minimal",
|
|
1152
|
+
"low",
|
|
1153
|
+
"medium",
|
|
1154
|
+
"high",
|
|
1155
|
+
"xhigh",
|
|
1156
|
+
"max",
|
|
1157
|
+
"auto"
|
|
1158
|
+
]
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
"type": "string"
|
|
1162
|
+
}
|
|
1163
|
+
]
|
|
1164
|
+
},
|
|
807
1165
|
"variant": {
|
|
808
1166
|
"type": "string"
|
|
809
1167
|
}
|
|
@@ -816,6 +1174,26 @@
|
|
|
816
1174
|
"model": {
|
|
817
1175
|
"type": "string"
|
|
818
1176
|
},
|
|
1177
|
+
"reasoning": {
|
|
1178
|
+
"anyOf": [
|
|
1179
|
+
{
|
|
1180
|
+
"type": "string",
|
|
1181
|
+
"enum": [
|
|
1182
|
+
"off",
|
|
1183
|
+
"minimal",
|
|
1184
|
+
"low",
|
|
1185
|
+
"medium",
|
|
1186
|
+
"high",
|
|
1187
|
+
"xhigh",
|
|
1188
|
+
"max",
|
|
1189
|
+
"auto"
|
|
1190
|
+
]
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"type": "string"
|
|
1194
|
+
}
|
|
1195
|
+
]
|
|
1196
|
+
},
|
|
819
1197
|
"variant": {
|
|
820
1198
|
"type": "string"
|
|
821
1199
|
}
|
|
@@ -831,6 +1209,95 @@
|
|
|
831
1209
|
"model": {
|
|
832
1210
|
"type": "string"
|
|
833
1211
|
},
|
|
1212
|
+
"models": {
|
|
1213
|
+
"type": "array",
|
|
1214
|
+
"items": {
|
|
1215
|
+
"anyOf": [
|
|
1216
|
+
{
|
|
1217
|
+
"type": "string"
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"type": "object",
|
|
1221
|
+
"properties": {
|
|
1222
|
+
"model": {
|
|
1223
|
+
"type": "string"
|
|
1224
|
+
},
|
|
1225
|
+
"reasoning": {
|
|
1226
|
+
"anyOf": [
|
|
1227
|
+
{
|
|
1228
|
+
"type": "string",
|
|
1229
|
+
"enum": [
|
|
1230
|
+
"off",
|
|
1231
|
+
"minimal",
|
|
1232
|
+
"low",
|
|
1233
|
+
"medium",
|
|
1234
|
+
"high",
|
|
1235
|
+
"xhigh",
|
|
1236
|
+
"max",
|
|
1237
|
+
"auto"
|
|
1238
|
+
]
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"type": "string"
|
|
1242
|
+
}
|
|
1243
|
+
]
|
|
1244
|
+
},
|
|
1245
|
+
"variant": {
|
|
1246
|
+
"type": "string"
|
|
1247
|
+
},
|
|
1248
|
+
"reasoningEffort": {
|
|
1249
|
+
"type": "string",
|
|
1250
|
+
"enum": [
|
|
1251
|
+
"none",
|
|
1252
|
+
"minimal",
|
|
1253
|
+
"low",
|
|
1254
|
+
"medium",
|
|
1255
|
+
"high",
|
|
1256
|
+
"xhigh",
|
|
1257
|
+
"max"
|
|
1258
|
+
]
|
|
1259
|
+
},
|
|
1260
|
+
"temperature": {
|
|
1261
|
+
"type": "number",
|
|
1262
|
+
"minimum": 0,
|
|
1263
|
+
"maximum": 2
|
|
1264
|
+
},
|
|
1265
|
+
"top_p": {
|
|
1266
|
+
"type": "number",
|
|
1267
|
+
"minimum": 0,
|
|
1268
|
+
"maximum": 1
|
|
1269
|
+
},
|
|
1270
|
+
"maxTokens": {
|
|
1271
|
+
"type": "number"
|
|
1272
|
+
},
|
|
1273
|
+
"thinking": {
|
|
1274
|
+
"type": "object",
|
|
1275
|
+
"properties": {
|
|
1276
|
+
"type": {
|
|
1277
|
+
"type": "string",
|
|
1278
|
+
"enum": [
|
|
1279
|
+
"enabled",
|
|
1280
|
+
"disabled"
|
|
1281
|
+
]
|
|
1282
|
+
},
|
|
1283
|
+
"budgetTokens": {
|
|
1284
|
+
"type": "number"
|
|
1285
|
+
}
|
|
1286
|
+
},
|
|
1287
|
+
"required": [
|
|
1288
|
+
"type"
|
|
1289
|
+
],
|
|
1290
|
+
"additionalProperties": false
|
|
1291
|
+
}
|
|
1292
|
+
},
|
|
1293
|
+
"required": [
|
|
1294
|
+
"model"
|
|
1295
|
+
],
|
|
1296
|
+
"additionalProperties": false
|
|
1297
|
+
}
|
|
1298
|
+
]
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
834
1301
|
"fallback_models": {
|
|
835
1302
|
"anyOf": [
|
|
836
1303
|
{
|
|
@@ -850,6 +1317,26 @@
|
|
|
850
1317
|
"model": {
|
|
851
1318
|
"type": "string"
|
|
852
1319
|
},
|
|
1320
|
+
"reasoning": {
|
|
1321
|
+
"anyOf": [
|
|
1322
|
+
{
|
|
1323
|
+
"type": "string",
|
|
1324
|
+
"enum": [
|
|
1325
|
+
"off",
|
|
1326
|
+
"minimal",
|
|
1327
|
+
"low",
|
|
1328
|
+
"medium",
|
|
1329
|
+
"high",
|
|
1330
|
+
"xhigh",
|
|
1331
|
+
"max",
|
|
1332
|
+
"auto"
|
|
1333
|
+
]
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
"type": "string"
|
|
1337
|
+
}
|
|
1338
|
+
]
|
|
1339
|
+
},
|
|
853
1340
|
"variant": {
|
|
854
1341
|
"type": "string"
|
|
855
1342
|
},
|
|
@@ -917,6 +1404,26 @@
|
|
|
917
1404
|
"model": {
|
|
918
1405
|
"type": "string"
|
|
919
1406
|
},
|
|
1407
|
+
"reasoning": {
|
|
1408
|
+
"anyOf": [
|
|
1409
|
+
{
|
|
1410
|
+
"type": "string",
|
|
1411
|
+
"enum": [
|
|
1412
|
+
"off",
|
|
1413
|
+
"minimal",
|
|
1414
|
+
"low",
|
|
1415
|
+
"medium",
|
|
1416
|
+
"high",
|
|
1417
|
+
"xhigh",
|
|
1418
|
+
"max",
|
|
1419
|
+
"auto"
|
|
1420
|
+
]
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"type": "string"
|
|
1424
|
+
}
|
|
1425
|
+
]
|
|
1426
|
+
},
|
|
920
1427
|
"variant": {
|
|
921
1428
|
"type": "string"
|
|
922
1429
|
},
|
|
@@ -975,6 +1482,26 @@
|
|
|
975
1482
|
}
|
|
976
1483
|
]
|
|
977
1484
|
},
|
|
1485
|
+
"reasoning": {
|
|
1486
|
+
"anyOf": [
|
|
1487
|
+
{
|
|
1488
|
+
"type": "string",
|
|
1489
|
+
"enum": [
|
|
1490
|
+
"off",
|
|
1491
|
+
"minimal",
|
|
1492
|
+
"low",
|
|
1493
|
+
"medium",
|
|
1494
|
+
"high",
|
|
1495
|
+
"xhigh",
|
|
1496
|
+
"max",
|
|
1497
|
+
"auto"
|
|
1498
|
+
]
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"type": "string"
|
|
1502
|
+
}
|
|
1503
|
+
]
|
|
1504
|
+
},
|
|
978
1505
|
"variant": {
|
|
979
1506
|
"type": "string"
|
|
980
1507
|
},
|
|
@@ -1167,6 +1694,26 @@
|
|
|
1167
1694
|
"model": {
|
|
1168
1695
|
"type": "string"
|
|
1169
1696
|
},
|
|
1697
|
+
"reasoning": {
|
|
1698
|
+
"anyOf": [
|
|
1699
|
+
{
|
|
1700
|
+
"type": "string",
|
|
1701
|
+
"enum": [
|
|
1702
|
+
"off",
|
|
1703
|
+
"minimal",
|
|
1704
|
+
"low",
|
|
1705
|
+
"medium",
|
|
1706
|
+
"high",
|
|
1707
|
+
"xhigh",
|
|
1708
|
+
"max",
|
|
1709
|
+
"auto"
|
|
1710
|
+
]
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"type": "string"
|
|
1714
|
+
}
|
|
1715
|
+
]
|
|
1716
|
+
},
|
|
1170
1717
|
"variant": {
|
|
1171
1718
|
"type": "string"
|
|
1172
1719
|
}
|
|
@@ -1179,6 +1726,26 @@
|
|
|
1179
1726
|
"model": {
|
|
1180
1727
|
"type": "string"
|
|
1181
1728
|
},
|
|
1729
|
+
"reasoning": {
|
|
1730
|
+
"anyOf": [
|
|
1731
|
+
{
|
|
1732
|
+
"type": "string",
|
|
1733
|
+
"enum": [
|
|
1734
|
+
"off",
|
|
1735
|
+
"minimal",
|
|
1736
|
+
"low",
|
|
1737
|
+
"medium",
|
|
1738
|
+
"high",
|
|
1739
|
+
"xhigh",
|
|
1740
|
+
"max",
|
|
1741
|
+
"auto"
|
|
1742
|
+
]
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"type": "string"
|
|
1746
|
+
}
|
|
1747
|
+
]
|
|
1748
|
+
},
|
|
1182
1749
|
"variant": {
|
|
1183
1750
|
"type": "string"
|
|
1184
1751
|
}
|
|
@@ -1194,25 +1761,39 @@
|
|
|
1194
1761
|
"model": {
|
|
1195
1762
|
"type": "string"
|
|
1196
1763
|
},
|
|
1197
|
-
"
|
|
1198
|
-
"
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
{
|
|
1203
|
-
"type": "array",
|
|
1204
|
-
"items": {
|
|
1764
|
+
"models": {
|
|
1765
|
+
"type": "array",
|
|
1766
|
+
"items": {
|
|
1767
|
+
"anyOf": [
|
|
1768
|
+
{
|
|
1205
1769
|
"type": "string"
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
|
-
{
|
|
1209
|
-
"type": "array",
|
|
1210
|
-
"items": {
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1211
1772
|
"type": "object",
|
|
1212
1773
|
"properties": {
|
|
1213
1774
|
"model": {
|
|
1214
1775
|
"type": "string"
|
|
1215
1776
|
},
|
|
1777
|
+
"reasoning": {
|
|
1778
|
+
"anyOf": [
|
|
1779
|
+
{
|
|
1780
|
+
"type": "string",
|
|
1781
|
+
"enum": [
|
|
1782
|
+
"off",
|
|
1783
|
+
"minimal",
|
|
1784
|
+
"low",
|
|
1785
|
+
"medium",
|
|
1786
|
+
"high",
|
|
1787
|
+
"xhigh",
|
|
1788
|
+
"max",
|
|
1789
|
+
"auto"
|
|
1790
|
+
]
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
"type": "string"
|
|
1794
|
+
}
|
|
1795
|
+
]
|
|
1796
|
+
},
|
|
1216
1797
|
"variant": {
|
|
1217
1798
|
"type": "string"
|
|
1218
1799
|
},
|
|
@@ -1266,53 +1847,168 @@
|
|
|
1266
1847
|
],
|
|
1267
1848
|
"additionalProperties": false
|
|
1268
1849
|
}
|
|
1850
|
+
]
|
|
1851
|
+
}
|
|
1852
|
+
},
|
|
1853
|
+
"fallback_models": {
|
|
1854
|
+
"anyOf": [
|
|
1855
|
+
{
|
|
1856
|
+
"type": "string"
|
|
1269
1857
|
},
|
|
1270
1858
|
{
|
|
1271
1859
|
"type": "array",
|
|
1272
1860
|
"items": {
|
|
1273
|
-
"
|
|
1274
|
-
|
|
1861
|
+
"type": "string"
|
|
1862
|
+
}
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"type": "array",
|
|
1866
|
+
"items": {
|
|
1867
|
+
"type": "object",
|
|
1868
|
+
"properties": {
|
|
1869
|
+
"model": {
|
|
1275
1870
|
"type": "string"
|
|
1276
1871
|
},
|
|
1277
|
-
{
|
|
1278
|
-
"
|
|
1279
|
-
|
|
1280
|
-
"model": {
|
|
1281
|
-
"type": "string"
|
|
1282
|
-
},
|
|
1283
|
-
"variant": {
|
|
1284
|
-
"type": "string"
|
|
1285
|
-
},
|
|
1286
|
-
"reasoningEffort": {
|
|
1872
|
+
"reasoning": {
|
|
1873
|
+
"anyOf": [
|
|
1874
|
+
{
|
|
1287
1875
|
"type": "string",
|
|
1288
1876
|
"enum": [
|
|
1289
|
-
"
|
|
1877
|
+
"off",
|
|
1290
1878
|
"minimal",
|
|
1291
1879
|
"low",
|
|
1292
1880
|
"medium",
|
|
1293
1881
|
"high",
|
|
1294
1882
|
"xhigh",
|
|
1295
|
-
"max"
|
|
1883
|
+
"max",
|
|
1884
|
+
"auto"
|
|
1296
1885
|
]
|
|
1297
1886
|
},
|
|
1298
|
-
|
|
1299
|
-
"type": "
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
"
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1887
|
+
{
|
|
1888
|
+
"type": "string"
|
|
1889
|
+
}
|
|
1890
|
+
]
|
|
1891
|
+
},
|
|
1892
|
+
"variant": {
|
|
1893
|
+
"type": "string"
|
|
1894
|
+
},
|
|
1895
|
+
"reasoningEffort": {
|
|
1896
|
+
"type": "string",
|
|
1897
|
+
"enum": [
|
|
1898
|
+
"none",
|
|
1899
|
+
"minimal",
|
|
1900
|
+
"low",
|
|
1901
|
+
"medium",
|
|
1902
|
+
"high",
|
|
1903
|
+
"xhigh",
|
|
1904
|
+
"max"
|
|
1905
|
+
]
|
|
1906
|
+
},
|
|
1907
|
+
"temperature": {
|
|
1908
|
+
"type": "number",
|
|
1909
|
+
"minimum": 0,
|
|
1910
|
+
"maximum": 2
|
|
1911
|
+
},
|
|
1912
|
+
"top_p": {
|
|
1913
|
+
"type": "number",
|
|
1914
|
+
"minimum": 0,
|
|
1915
|
+
"maximum": 1
|
|
1916
|
+
},
|
|
1917
|
+
"maxTokens": {
|
|
1918
|
+
"type": "number"
|
|
1919
|
+
},
|
|
1920
|
+
"thinking": {
|
|
1921
|
+
"type": "object",
|
|
1922
|
+
"properties": {
|
|
1923
|
+
"type": {
|
|
1924
|
+
"type": "string",
|
|
1925
|
+
"enum": [
|
|
1926
|
+
"enabled",
|
|
1927
|
+
"disabled"
|
|
1928
|
+
]
|
|
1929
|
+
},
|
|
1930
|
+
"budgetTokens": {
|
|
1931
|
+
"type": "number"
|
|
1932
|
+
}
|
|
1933
|
+
},
|
|
1934
|
+
"required": [
|
|
1935
|
+
"type"
|
|
1936
|
+
],
|
|
1937
|
+
"additionalProperties": false
|
|
1938
|
+
}
|
|
1939
|
+
},
|
|
1940
|
+
"required": [
|
|
1941
|
+
"model"
|
|
1942
|
+
],
|
|
1943
|
+
"additionalProperties": false
|
|
1944
|
+
}
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
"type": "array",
|
|
1948
|
+
"items": {
|
|
1949
|
+
"anyOf": [
|
|
1950
|
+
{
|
|
1951
|
+
"type": "string"
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
"type": "object",
|
|
1955
|
+
"properties": {
|
|
1956
|
+
"model": {
|
|
1957
|
+
"type": "string"
|
|
1958
|
+
},
|
|
1959
|
+
"reasoning": {
|
|
1960
|
+
"anyOf": [
|
|
1961
|
+
{
|
|
1962
|
+
"type": "string",
|
|
1963
|
+
"enum": [
|
|
1964
|
+
"off",
|
|
1965
|
+
"minimal",
|
|
1966
|
+
"low",
|
|
1967
|
+
"medium",
|
|
1968
|
+
"high",
|
|
1969
|
+
"xhigh",
|
|
1970
|
+
"max",
|
|
1971
|
+
"auto"
|
|
1972
|
+
]
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"type": "string"
|
|
1976
|
+
}
|
|
1977
|
+
]
|
|
1978
|
+
},
|
|
1979
|
+
"variant": {
|
|
1980
|
+
"type": "string"
|
|
1981
|
+
},
|
|
1982
|
+
"reasoningEffort": {
|
|
1983
|
+
"type": "string",
|
|
1984
|
+
"enum": [
|
|
1985
|
+
"none",
|
|
1986
|
+
"minimal",
|
|
1987
|
+
"low",
|
|
1988
|
+
"medium",
|
|
1989
|
+
"high",
|
|
1990
|
+
"xhigh",
|
|
1991
|
+
"max"
|
|
1992
|
+
]
|
|
1993
|
+
},
|
|
1994
|
+
"temperature": {
|
|
1995
|
+
"type": "number",
|
|
1996
|
+
"minimum": 0,
|
|
1997
|
+
"maximum": 2
|
|
1998
|
+
},
|
|
1999
|
+
"top_p": {
|
|
2000
|
+
"type": "number",
|
|
2001
|
+
"minimum": 0,
|
|
2002
|
+
"maximum": 1
|
|
2003
|
+
},
|
|
2004
|
+
"maxTokens": {
|
|
2005
|
+
"type": "number"
|
|
2006
|
+
},
|
|
2007
|
+
"thinking": {
|
|
2008
|
+
"type": "object",
|
|
2009
|
+
"properties": {
|
|
2010
|
+
"type": {
|
|
2011
|
+
"type": "string",
|
|
1316
2012
|
"enum": [
|
|
1317
2013
|
"enabled",
|
|
1318
2014
|
"disabled"
|
|
@@ -1338,6 +2034,26 @@
|
|
|
1338
2034
|
}
|
|
1339
2035
|
]
|
|
1340
2036
|
},
|
|
2037
|
+
"reasoning": {
|
|
2038
|
+
"anyOf": [
|
|
2039
|
+
{
|
|
2040
|
+
"type": "string",
|
|
2041
|
+
"enum": [
|
|
2042
|
+
"off",
|
|
2043
|
+
"minimal",
|
|
2044
|
+
"low",
|
|
2045
|
+
"medium",
|
|
2046
|
+
"high",
|
|
2047
|
+
"xhigh",
|
|
2048
|
+
"max",
|
|
2049
|
+
"auto"
|
|
2050
|
+
]
|
|
2051
|
+
},
|
|
2052
|
+
{
|
|
2053
|
+
"type": "string"
|
|
2054
|
+
}
|
|
2055
|
+
]
|
|
2056
|
+
},
|
|
1341
2057
|
"variant": {
|
|
1342
2058
|
"type": "string"
|
|
1343
2059
|
},
|
|
@@ -1530,6 +2246,26 @@
|
|
|
1530
2246
|
"model": {
|
|
1531
2247
|
"type": "string"
|
|
1532
2248
|
},
|
|
2249
|
+
"reasoning": {
|
|
2250
|
+
"anyOf": [
|
|
2251
|
+
{
|
|
2252
|
+
"type": "string",
|
|
2253
|
+
"enum": [
|
|
2254
|
+
"off",
|
|
2255
|
+
"minimal",
|
|
2256
|
+
"low",
|
|
2257
|
+
"medium",
|
|
2258
|
+
"high",
|
|
2259
|
+
"xhigh",
|
|
2260
|
+
"max",
|
|
2261
|
+
"auto"
|
|
2262
|
+
]
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
"type": "string"
|
|
2266
|
+
}
|
|
2267
|
+
]
|
|
2268
|
+
},
|
|
1533
2269
|
"variant": {
|
|
1534
2270
|
"type": "string"
|
|
1535
2271
|
}
|
|
@@ -1542,6 +2278,26 @@
|
|
|
1542
2278
|
"model": {
|
|
1543
2279
|
"type": "string"
|
|
1544
2280
|
},
|
|
2281
|
+
"reasoning": {
|
|
2282
|
+
"anyOf": [
|
|
2283
|
+
{
|
|
2284
|
+
"type": "string",
|
|
2285
|
+
"enum": [
|
|
2286
|
+
"off",
|
|
2287
|
+
"minimal",
|
|
2288
|
+
"low",
|
|
2289
|
+
"medium",
|
|
2290
|
+
"high",
|
|
2291
|
+
"xhigh",
|
|
2292
|
+
"max",
|
|
2293
|
+
"auto"
|
|
2294
|
+
]
|
|
2295
|
+
},
|
|
2296
|
+
{
|
|
2297
|
+
"type": "string"
|
|
2298
|
+
}
|
|
2299
|
+
]
|
|
2300
|
+
},
|
|
1545
2301
|
"variant": {
|
|
1546
2302
|
"type": "string"
|
|
1547
2303
|
}
|
|
@@ -1560,6 +2316,95 @@
|
|
|
1560
2316
|
"model": {
|
|
1561
2317
|
"type": "string"
|
|
1562
2318
|
},
|
|
2319
|
+
"models": {
|
|
2320
|
+
"type": "array",
|
|
2321
|
+
"items": {
|
|
2322
|
+
"anyOf": [
|
|
2323
|
+
{
|
|
2324
|
+
"type": "string"
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"type": "object",
|
|
2328
|
+
"properties": {
|
|
2329
|
+
"model": {
|
|
2330
|
+
"type": "string"
|
|
2331
|
+
},
|
|
2332
|
+
"reasoning": {
|
|
2333
|
+
"anyOf": [
|
|
2334
|
+
{
|
|
2335
|
+
"type": "string",
|
|
2336
|
+
"enum": [
|
|
2337
|
+
"off",
|
|
2338
|
+
"minimal",
|
|
2339
|
+
"low",
|
|
2340
|
+
"medium",
|
|
2341
|
+
"high",
|
|
2342
|
+
"xhigh",
|
|
2343
|
+
"max",
|
|
2344
|
+
"auto"
|
|
2345
|
+
]
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
"type": "string"
|
|
2349
|
+
}
|
|
2350
|
+
]
|
|
2351
|
+
},
|
|
2352
|
+
"variant": {
|
|
2353
|
+
"type": "string"
|
|
2354
|
+
},
|
|
2355
|
+
"reasoningEffort": {
|
|
2356
|
+
"type": "string",
|
|
2357
|
+
"enum": [
|
|
2358
|
+
"none",
|
|
2359
|
+
"minimal",
|
|
2360
|
+
"low",
|
|
2361
|
+
"medium",
|
|
2362
|
+
"high",
|
|
2363
|
+
"xhigh",
|
|
2364
|
+
"max"
|
|
2365
|
+
]
|
|
2366
|
+
},
|
|
2367
|
+
"temperature": {
|
|
2368
|
+
"type": "number",
|
|
2369
|
+
"minimum": 0,
|
|
2370
|
+
"maximum": 2
|
|
2371
|
+
},
|
|
2372
|
+
"top_p": {
|
|
2373
|
+
"type": "number",
|
|
2374
|
+
"minimum": 0,
|
|
2375
|
+
"maximum": 1
|
|
2376
|
+
},
|
|
2377
|
+
"maxTokens": {
|
|
2378
|
+
"type": "number"
|
|
2379
|
+
},
|
|
2380
|
+
"thinking": {
|
|
2381
|
+
"type": "object",
|
|
2382
|
+
"properties": {
|
|
2383
|
+
"type": {
|
|
2384
|
+
"type": "string",
|
|
2385
|
+
"enum": [
|
|
2386
|
+
"enabled",
|
|
2387
|
+
"disabled"
|
|
2388
|
+
]
|
|
2389
|
+
},
|
|
2390
|
+
"budgetTokens": {
|
|
2391
|
+
"type": "number"
|
|
2392
|
+
}
|
|
2393
|
+
},
|
|
2394
|
+
"required": [
|
|
2395
|
+
"type"
|
|
2396
|
+
],
|
|
2397
|
+
"additionalProperties": false
|
|
2398
|
+
}
|
|
2399
|
+
},
|
|
2400
|
+
"required": [
|
|
2401
|
+
"model"
|
|
2402
|
+
],
|
|
2403
|
+
"additionalProperties": false
|
|
2404
|
+
}
|
|
2405
|
+
]
|
|
2406
|
+
}
|
|
2407
|
+
},
|
|
1563
2408
|
"fallback_models": {
|
|
1564
2409
|
"anyOf": [
|
|
1565
2410
|
{
|
|
@@ -1579,6 +2424,26 @@
|
|
|
1579
2424
|
"model": {
|
|
1580
2425
|
"type": "string"
|
|
1581
2426
|
},
|
|
2427
|
+
"reasoning": {
|
|
2428
|
+
"anyOf": [
|
|
2429
|
+
{
|
|
2430
|
+
"type": "string",
|
|
2431
|
+
"enum": [
|
|
2432
|
+
"off",
|
|
2433
|
+
"minimal",
|
|
2434
|
+
"low",
|
|
2435
|
+
"medium",
|
|
2436
|
+
"high",
|
|
2437
|
+
"xhigh",
|
|
2438
|
+
"max",
|
|
2439
|
+
"auto"
|
|
2440
|
+
]
|
|
2441
|
+
},
|
|
2442
|
+
{
|
|
2443
|
+
"type": "string"
|
|
2444
|
+
}
|
|
2445
|
+
]
|
|
2446
|
+
},
|
|
1582
2447
|
"variant": {
|
|
1583
2448
|
"type": "string"
|
|
1584
2449
|
},
|
|
@@ -1646,6 +2511,26 @@
|
|
|
1646
2511
|
"model": {
|
|
1647
2512
|
"type": "string"
|
|
1648
2513
|
},
|
|
2514
|
+
"reasoning": {
|
|
2515
|
+
"anyOf": [
|
|
2516
|
+
{
|
|
2517
|
+
"type": "string",
|
|
2518
|
+
"enum": [
|
|
2519
|
+
"off",
|
|
2520
|
+
"minimal",
|
|
2521
|
+
"low",
|
|
2522
|
+
"medium",
|
|
2523
|
+
"high",
|
|
2524
|
+
"xhigh",
|
|
2525
|
+
"max",
|
|
2526
|
+
"auto"
|
|
2527
|
+
]
|
|
2528
|
+
},
|
|
2529
|
+
{
|
|
2530
|
+
"type": "string"
|
|
2531
|
+
}
|
|
2532
|
+
]
|
|
2533
|
+
},
|
|
1649
2534
|
"variant": {
|
|
1650
2535
|
"type": "string"
|
|
1651
2536
|
},
|
|
@@ -1704,7 +2589,27 @@
|
|
|
1704
2589
|
}
|
|
1705
2590
|
]
|
|
1706
2591
|
},
|
|
1707
|
-
"
|
|
2592
|
+
"reasoning": {
|
|
2593
|
+
"anyOf": [
|
|
2594
|
+
{
|
|
2595
|
+
"type": "string",
|
|
2596
|
+
"enum": [
|
|
2597
|
+
"off",
|
|
2598
|
+
"minimal",
|
|
2599
|
+
"low",
|
|
2600
|
+
"medium",
|
|
2601
|
+
"high",
|
|
2602
|
+
"xhigh",
|
|
2603
|
+
"max",
|
|
2604
|
+
"auto"
|
|
2605
|
+
]
|
|
2606
|
+
},
|
|
2607
|
+
{
|
|
2608
|
+
"type": "string"
|
|
2609
|
+
}
|
|
2610
|
+
]
|
|
2611
|
+
},
|
|
2612
|
+
"variant": {
|
|
1708
2613
|
"type": "string"
|
|
1709
2614
|
},
|
|
1710
2615
|
"category": {
|
|
@@ -1896,6 +2801,26 @@
|
|
|
1896
2801
|
"model": {
|
|
1897
2802
|
"type": "string"
|
|
1898
2803
|
},
|
|
2804
|
+
"reasoning": {
|
|
2805
|
+
"anyOf": [
|
|
2806
|
+
{
|
|
2807
|
+
"type": "string",
|
|
2808
|
+
"enum": [
|
|
2809
|
+
"off",
|
|
2810
|
+
"minimal",
|
|
2811
|
+
"low",
|
|
2812
|
+
"medium",
|
|
2813
|
+
"high",
|
|
2814
|
+
"xhigh",
|
|
2815
|
+
"max",
|
|
2816
|
+
"auto"
|
|
2817
|
+
]
|
|
2818
|
+
},
|
|
2819
|
+
{
|
|
2820
|
+
"type": "string"
|
|
2821
|
+
}
|
|
2822
|
+
]
|
|
2823
|
+
},
|
|
1899
2824
|
"variant": {
|
|
1900
2825
|
"type": "string"
|
|
1901
2826
|
}
|
|
@@ -1908,6 +2833,26 @@
|
|
|
1908
2833
|
"model": {
|
|
1909
2834
|
"type": "string"
|
|
1910
2835
|
},
|
|
2836
|
+
"reasoning": {
|
|
2837
|
+
"anyOf": [
|
|
2838
|
+
{
|
|
2839
|
+
"type": "string",
|
|
2840
|
+
"enum": [
|
|
2841
|
+
"off",
|
|
2842
|
+
"minimal",
|
|
2843
|
+
"low",
|
|
2844
|
+
"medium",
|
|
2845
|
+
"high",
|
|
2846
|
+
"xhigh",
|
|
2847
|
+
"max",
|
|
2848
|
+
"auto"
|
|
2849
|
+
]
|
|
2850
|
+
},
|
|
2851
|
+
{
|
|
2852
|
+
"type": "string"
|
|
2853
|
+
}
|
|
2854
|
+
]
|
|
2855
|
+
},
|
|
1911
2856
|
"variant": {
|
|
1912
2857
|
"type": "string"
|
|
1913
2858
|
}
|
|
@@ -1923,6 +2868,95 @@
|
|
|
1923
2868
|
"model": {
|
|
1924
2869
|
"type": "string"
|
|
1925
2870
|
},
|
|
2871
|
+
"models": {
|
|
2872
|
+
"type": "array",
|
|
2873
|
+
"items": {
|
|
2874
|
+
"anyOf": [
|
|
2875
|
+
{
|
|
2876
|
+
"type": "string"
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
"type": "object",
|
|
2880
|
+
"properties": {
|
|
2881
|
+
"model": {
|
|
2882
|
+
"type": "string"
|
|
2883
|
+
},
|
|
2884
|
+
"reasoning": {
|
|
2885
|
+
"anyOf": [
|
|
2886
|
+
{
|
|
2887
|
+
"type": "string",
|
|
2888
|
+
"enum": [
|
|
2889
|
+
"off",
|
|
2890
|
+
"minimal",
|
|
2891
|
+
"low",
|
|
2892
|
+
"medium",
|
|
2893
|
+
"high",
|
|
2894
|
+
"xhigh",
|
|
2895
|
+
"max",
|
|
2896
|
+
"auto"
|
|
2897
|
+
]
|
|
2898
|
+
},
|
|
2899
|
+
{
|
|
2900
|
+
"type": "string"
|
|
2901
|
+
}
|
|
2902
|
+
]
|
|
2903
|
+
},
|
|
2904
|
+
"variant": {
|
|
2905
|
+
"type": "string"
|
|
2906
|
+
},
|
|
2907
|
+
"reasoningEffort": {
|
|
2908
|
+
"type": "string",
|
|
2909
|
+
"enum": [
|
|
2910
|
+
"none",
|
|
2911
|
+
"minimal",
|
|
2912
|
+
"low",
|
|
2913
|
+
"medium",
|
|
2914
|
+
"high",
|
|
2915
|
+
"xhigh",
|
|
2916
|
+
"max"
|
|
2917
|
+
]
|
|
2918
|
+
},
|
|
2919
|
+
"temperature": {
|
|
2920
|
+
"type": "number",
|
|
2921
|
+
"minimum": 0,
|
|
2922
|
+
"maximum": 2
|
|
2923
|
+
},
|
|
2924
|
+
"top_p": {
|
|
2925
|
+
"type": "number",
|
|
2926
|
+
"minimum": 0,
|
|
2927
|
+
"maximum": 1
|
|
2928
|
+
},
|
|
2929
|
+
"maxTokens": {
|
|
2930
|
+
"type": "number"
|
|
2931
|
+
},
|
|
2932
|
+
"thinking": {
|
|
2933
|
+
"type": "object",
|
|
2934
|
+
"properties": {
|
|
2935
|
+
"type": {
|
|
2936
|
+
"type": "string",
|
|
2937
|
+
"enum": [
|
|
2938
|
+
"enabled",
|
|
2939
|
+
"disabled"
|
|
2940
|
+
]
|
|
2941
|
+
},
|
|
2942
|
+
"budgetTokens": {
|
|
2943
|
+
"type": "number"
|
|
2944
|
+
}
|
|
2945
|
+
},
|
|
2946
|
+
"required": [
|
|
2947
|
+
"type"
|
|
2948
|
+
],
|
|
2949
|
+
"additionalProperties": false
|
|
2950
|
+
}
|
|
2951
|
+
},
|
|
2952
|
+
"required": [
|
|
2953
|
+
"model"
|
|
2954
|
+
],
|
|
2955
|
+
"additionalProperties": false
|
|
2956
|
+
}
|
|
2957
|
+
]
|
|
2958
|
+
}
|
|
2959
|
+
},
|
|
1926
2960
|
"fallback_models": {
|
|
1927
2961
|
"anyOf": [
|
|
1928
2962
|
{
|
|
@@ -1942,6 +2976,26 @@
|
|
|
1942
2976
|
"model": {
|
|
1943
2977
|
"type": "string"
|
|
1944
2978
|
},
|
|
2979
|
+
"reasoning": {
|
|
2980
|
+
"anyOf": [
|
|
2981
|
+
{
|
|
2982
|
+
"type": "string",
|
|
2983
|
+
"enum": [
|
|
2984
|
+
"off",
|
|
2985
|
+
"minimal",
|
|
2986
|
+
"low",
|
|
2987
|
+
"medium",
|
|
2988
|
+
"high",
|
|
2989
|
+
"xhigh",
|
|
2990
|
+
"max",
|
|
2991
|
+
"auto"
|
|
2992
|
+
]
|
|
2993
|
+
},
|
|
2994
|
+
{
|
|
2995
|
+
"type": "string"
|
|
2996
|
+
}
|
|
2997
|
+
]
|
|
2998
|
+
},
|
|
1945
2999
|
"variant": {
|
|
1946
3000
|
"type": "string"
|
|
1947
3001
|
},
|
|
@@ -2009,6 +3063,26 @@
|
|
|
2009
3063
|
"model": {
|
|
2010
3064
|
"type": "string"
|
|
2011
3065
|
},
|
|
3066
|
+
"reasoning": {
|
|
3067
|
+
"anyOf": [
|
|
3068
|
+
{
|
|
3069
|
+
"type": "string",
|
|
3070
|
+
"enum": [
|
|
3071
|
+
"off",
|
|
3072
|
+
"minimal",
|
|
3073
|
+
"low",
|
|
3074
|
+
"medium",
|
|
3075
|
+
"high",
|
|
3076
|
+
"xhigh",
|
|
3077
|
+
"max",
|
|
3078
|
+
"auto"
|
|
3079
|
+
]
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
"type": "string"
|
|
3083
|
+
}
|
|
3084
|
+
]
|
|
3085
|
+
},
|
|
2012
3086
|
"variant": {
|
|
2013
3087
|
"type": "string"
|
|
2014
3088
|
},
|
|
@@ -2067,6 +3141,26 @@
|
|
|
2067
3141
|
}
|
|
2068
3142
|
]
|
|
2069
3143
|
},
|
|
3144
|
+
"reasoning": {
|
|
3145
|
+
"anyOf": [
|
|
3146
|
+
{
|
|
3147
|
+
"type": "string",
|
|
3148
|
+
"enum": [
|
|
3149
|
+
"off",
|
|
3150
|
+
"minimal",
|
|
3151
|
+
"low",
|
|
3152
|
+
"medium",
|
|
3153
|
+
"high",
|
|
3154
|
+
"xhigh",
|
|
3155
|
+
"max",
|
|
3156
|
+
"auto"
|
|
3157
|
+
]
|
|
3158
|
+
},
|
|
3159
|
+
{
|
|
3160
|
+
"type": "string"
|
|
3161
|
+
}
|
|
3162
|
+
]
|
|
3163
|
+
},
|
|
2070
3164
|
"variant": {
|
|
2071
3165
|
"type": "string"
|
|
2072
3166
|
},
|
|
@@ -2259,6 +3353,26 @@
|
|
|
2259
3353
|
"model": {
|
|
2260
3354
|
"type": "string"
|
|
2261
3355
|
},
|
|
3356
|
+
"reasoning": {
|
|
3357
|
+
"anyOf": [
|
|
3358
|
+
{
|
|
3359
|
+
"type": "string",
|
|
3360
|
+
"enum": [
|
|
3361
|
+
"off",
|
|
3362
|
+
"minimal",
|
|
3363
|
+
"low",
|
|
3364
|
+
"medium",
|
|
3365
|
+
"high",
|
|
3366
|
+
"xhigh",
|
|
3367
|
+
"max",
|
|
3368
|
+
"auto"
|
|
3369
|
+
]
|
|
3370
|
+
},
|
|
3371
|
+
{
|
|
3372
|
+
"type": "string"
|
|
3373
|
+
}
|
|
3374
|
+
]
|
|
3375
|
+
},
|
|
2262
3376
|
"variant": {
|
|
2263
3377
|
"type": "string"
|
|
2264
3378
|
}
|
|
@@ -2271,6 +3385,26 @@
|
|
|
2271
3385
|
"model": {
|
|
2272
3386
|
"type": "string"
|
|
2273
3387
|
},
|
|
3388
|
+
"reasoning": {
|
|
3389
|
+
"anyOf": [
|
|
3390
|
+
{
|
|
3391
|
+
"type": "string",
|
|
3392
|
+
"enum": [
|
|
3393
|
+
"off",
|
|
3394
|
+
"minimal",
|
|
3395
|
+
"low",
|
|
3396
|
+
"medium",
|
|
3397
|
+
"high",
|
|
3398
|
+
"xhigh",
|
|
3399
|
+
"max",
|
|
3400
|
+
"auto"
|
|
3401
|
+
]
|
|
3402
|
+
},
|
|
3403
|
+
{
|
|
3404
|
+
"type": "string"
|
|
3405
|
+
}
|
|
3406
|
+
]
|
|
3407
|
+
},
|
|
2274
3408
|
"variant": {
|
|
2275
3409
|
"type": "string"
|
|
2276
3410
|
}
|
|
@@ -2286,25 +3420,39 @@
|
|
|
2286
3420
|
"model": {
|
|
2287
3421
|
"type": "string"
|
|
2288
3422
|
},
|
|
2289
|
-
"
|
|
2290
|
-
"
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
{
|
|
2295
|
-
"type": "array",
|
|
2296
|
-
"items": {
|
|
3423
|
+
"models": {
|
|
3424
|
+
"type": "array",
|
|
3425
|
+
"items": {
|
|
3426
|
+
"anyOf": [
|
|
3427
|
+
{
|
|
2297
3428
|
"type": "string"
|
|
2298
|
-
}
|
|
2299
|
-
|
|
2300
|
-
{
|
|
2301
|
-
"type": "array",
|
|
2302
|
-
"items": {
|
|
3429
|
+
},
|
|
3430
|
+
{
|
|
2303
3431
|
"type": "object",
|
|
2304
3432
|
"properties": {
|
|
2305
3433
|
"model": {
|
|
2306
3434
|
"type": "string"
|
|
2307
3435
|
},
|
|
3436
|
+
"reasoning": {
|
|
3437
|
+
"anyOf": [
|
|
3438
|
+
{
|
|
3439
|
+
"type": "string",
|
|
3440
|
+
"enum": [
|
|
3441
|
+
"off",
|
|
3442
|
+
"minimal",
|
|
3443
|
+
"low",
|
|
3444
|
+
"medium",
|
|
3445
|
+
"high",
|
|
3446
|
+
"xhigh",
|
|
3447
|
+
"max",
|
|
3448
|
+
"auto"
|
|
3449
|
+
]
|
|
3450
|
+
},
|
|
3451
|
+
{
|
|
3452
|
+
"type": "string"
|
|
3453
|
+
}
|
|
3454
|
+
]
|
|
3455
|
+
},
|
|
2308
3456
|
"variant": {
|
|
2309
3457
|
"type": "string"
|
|
2310
3458
|
},
|
|
@@ -2358,41 +3506,156 @@
|
|
|
2358
3506
|
],
|
|
2359
3507
|
"additionalProperties": false
|
|
2360
3508
|
}
|
|
3509
|
+
]
|
|
3510
|
+
}
|
|
3511
|
+
},
|
|
3512
|
+
"fallback_models": {
|
|
3513
|
+
"anyOf": [
|
|
3514
|
+
{
|
|
3515
|
+
"type": "string"
|
|
3516
|
+
},
|
|
3517
|
+
{
|
|
3518
|
+
"type": "array",
|
|
3519
|
+
"items": {
|
|
3520
|
+
"type": "string"
|
|
3521
|
+
}
|
|
2361
3522
|
},
|
|
2362
3523
|
{
|
|
2363
3524
|
"type": "array",
|
|
2364
3525
|
"items": {
|
|
2365
|
-
"
|
|
2366
|
-
|
|
3526
|
+
"type": "object",
|
|
3527
|
+
"properties": {
|
|
3528
|
+
"model": {
|
|
2367
3529
|
"type": "string"
|
|
2368
3530
|
},
|
|
2369
|
-
{
|
|
2370
|
-
"
|
|
2371
|
-
|
|
2372
|
-
"model": {
|
|
2373
|
-
"type": "string"
|
|
2374
|
-
},
|
|
2375
|
-
"variant": {
|
|
2376
|
-
"type": "string"
|
|
2377
|
-
},
|
|
2378
|
-
"reasoningEffort": {
|
|
3531
|
+
"reasoning": {
|
|
3532
|
+
"anyOf": [
|
|
3533
|
+
{
|
|
2379
3534
|
"type": "string",
|
|
2380
3535
|
"enum": [
|
|
2381
|
-
"
|
|
3536
|
+
"off",
|
|
2382
3537
|
"minimal",
|
|
2383
3538
|
"low",
|
|
2384
3539
|
"medium",
|
|
2385
3540
|
"high",
|
|
2386
3541
|
"xhigh",
|
|
2387
|
-
"max"
|
|
3542
|
+
"max",
|
|
3543
|
+
"auto"
|
|
2388
3544
|
]
|
|
2389
3545
|
},
|
|
2390
|
-
|
|
2391
|
-
"type": "
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
3546
|
+
{
|
|
3547
|
+
"type": "string"
|
|
3548
|
+
}
|
|
3549
|
+
]
|
|
3550
|
+
},
|
|
3551
|
+
"variant": {
|
|
3552
|
+
"type": "string"
|
|
3553
|
+
},
|
|
3554
|
+
"reasoningEffort": {
|
|
3555
|
+
"type": "string",
|
|
3556
|
+
"enum": [
|
|
3557
|
+
"none",
|
|
3558
|
+
"minimal",
|
|
3559
|
+
"low",
|
|
3560
|
+
"medium",
|
|
3561
|
+
"high",
|
|
3562
|
+
"xhigh",
|
|
3563
|
+
"max"
|
|
3564
|
+
]
|
|
3565
|
+
},
|
|
3566
|
+
"temperature": {
|
|
3567
|
+
"type": "number",
|
|
3568
|
+
"minimum": 0,
|
|
3569
|
+
"maximum": 2
|
|
3570
|
+
},
|
|
3571
|
+
"top_p": {
|
|
3572
|
+
"type": "number",
|
|
3573
|
+
"minimum": 0,
|
|
3574
|
+
"maximum": 1
|
|
3575
|
+
},
|
|
3576
|
+
"maxTokens": {
|
|
3577
|
+
"type": "number"
|
|
3578
|
+
},
|
|
3579
|
+
"thinking": {
|
|
3580
|
+
"type": "object",
|
|
3581
|
+
"properties": {
|
|
3582
|
+
"type": {
|
|
3583
|
+
"type": "string",
|
|
3584
|
+
"enum": [
|
|
3585
|
+
"enabled",
|
|
3586
|
+
"disabled"
|
|
3587
|
+
]
|
|
3588
|
+
},
|
|
3589
|
+
"budgetTokens": {
|
|
3590
|
+
"type": "number"
|
|
3591
|
+
}
|
|
3592
|
+
},
|
|
3593
|
+
"required": [
|
|
3594
|
+
"type"
|
|
3595
|
+
],
|
|
3596
|
+
"additionalProperties": false
|
|
3597
|
+
}
|
|
3598
|
+
},
|
|
3599
|
+
"required": [
|
|
3600
|
+
"model"
|
|
3601
|
+
],
|
|
3602
|
+
"additionalProperties": false
|
|
3603
|
+
}
|
|
3604
|
+
},
|
|
3605
|
+
{
|
|
3606
|
+
"type": "array",
|
|
3607
|
+
"items": {
|
|
3608
|
+
"anyOf": [
|
|
3609
|
+
{
|
|
3610
|
+
"type": "string"
|
|
3611
|
+
},
|
|
3612
|
+
{
|
|
3613
|
+
"type": "object",
|
|
3614
|
+
"properties": {
|
|
3615
|
+
"model": {
|
|
3616
|
+
"type": "string"
|
|
3617
|
+
},
|
|
3618
|
+
"reasoning": {
|
|
3619
|
+
"anyOf": [
|
|
3620
|
+
{
|
|
3621
|
+
"type": "string",
|
|
3622
|
+
"enum": [
|
|
3623
|
+
"off",
|
|
3624
|
+
"minimal",
|
|
3625
|
+
"low",
|
|
3626
|
+
"medium",
|
|
3627
|
+
"high",
|
|
3628
|
+
"xhigh",
|
|
3629
|
+
"max",
|
|
3630
|
+
"auto"
|
|
3631
|
+
]
|
|
3632
|
+
},
|
|
3633
|
+
{
|
|
3634
|
+
"type": "string"
|
|
3635
|
+
}
|
|
3636
|
+
]
|
|
3637
|
+
},
|
|
3638
|
+
"variant": {
|
|
3639
|
+
"type": "string"
|
|
3640
|
+
},
|
|
3641
|
+
"reasoningEffort": {
|
|
3642
|
+
"type": "string",
|
|
3643
|
+
"enum": [
|
|
3644
|
+
"none",
|
|
3645
|
+
"minimal",
|
|
3646
|
+
"low",
|
|
3647
|
+
"medium",
|
|
3648
|
+
"high",
|
|
3649
|
+
"xhigh",
|
|
3650
|
+
"max"
|
|
3651
|
+
]
|
|
3652
|
+
},
|
|
3653
|
+
"temperature": {
|
|
3654
|
+
"type": "number",
|
|
3655
|
+
"minimum": 0,
|
|
3656
|
+
"maximum": 2
|
|
3657
|
+
},
|
|
3658
|
+
"top_p": {
|
|
2396
3659
|
"type": "number",
|
|
2397
3660
|
"minimum": 0,
|
|
2398
3661
|
"maximum": 1
|
|
@@ -2430,6 +3693,26 @@
|
|
|
2430
3693
|
}
|
|
2431
3694
|
]
|
|
2432
3695
|
},
|
|
3696
|
+
"reasoning": {
|
|
3697
|
+
"anyOf": [
|
|
3698
|
+
{
|
|
3699
|
+
"type": "string",
|
|
3700
|
+
"enum": [
|
|
3701
|
+
"off",
|
|
3702
|
+
"minimal",
|
|
3703
|
+
"low",
|
|
3704
|
+
"medium",
|
|
3705
|
+
"high",
|
|
3706
|
+
"xhigh",
|
|
3707
|
+
"max",
|
|
3708
|
+
"auto"
|
|
3709
|
+
]
|
|
3710
|
+
},
|
|
3711
|
+
{
|
|
3712
|
+
"type": "string"
|
|
3713
|
+
}
|
|
3714
|
+
]
|
|
3715
|
+
},
|
|
2433
3716
|
"variant": {
|
|
2434
3717
|
"type": "string"
|
|
2435
3718
|
},
|
|
@@ -2622,6 +3905,26 @@
|
|
|
2622
3905
|
"model": {
|
|
2623
3906
|
"type": "string"
|
|
2624
3907
|
},
|
|
3908
|
+
"reasoning": {
|
|
3909
|
+
"anyOf": [
|
|
3910
|
+
{
|
|
3911
|
+
"type": "string",
|
|
3912
|
+
"enum": [
|
|
3913
|
+
"off",
|
|
3914
|
+
"minimal",
|
|
3915
|
+
"low",
|
|
3916
|
+
"medium",
|
|
3917
|
+
"high",
|
|
3918
|
+
"xhigh",
|
|
3919
|
+
"max",
|
|
3920
|
+
"auto"
|
|
3921
|
+
]
|
|
3922
|
+
},
|
|
3923
|
+
{
|
|
3924
|
+
"type": "string"
|
|
3925
|
+
}
|
|
3926
|
+
]
|
|
3927
|
+
},
|
|
2625
3928
|
"variant": {
|
|
2626
3929
|
"type": "string"
|
|
2627
3930
|
}
|
|
@@ -2634,6 +3937,26 @@
|
|
|
2634
3937
|
"model": {
|
|
2635
3938
|
"type": "string"
|
|
2636
3939
|
},
|
|
3940
|
+
"reasoning": {
|
|
3941
|
+
"anyOf": [
|
|
3942
|
+
{
|
|
3943
|
+
"type": "string",
|
|
3944
|
+
"enum": [
|
|
3945
|
+
"off",
|
|
3946
|
+
"minimal",
|
|
3947
|
+
"low",
|
|
3948
|
+
"medium",
|
|
3949
|
+
"high",
|
|
3950
|
+
"xhigh",
|
|
3951
|
+
"max",
|
|
3952
|
+
"auto"
|
|
3953
|
+
]
|
|
3954
|
+
},
|
|
3955
|
+
{
|
|
3956
|
+
"type": "string"
|
|
3957
|
+
}
|
|
3958
|
+
]
|
|
3959
|
+
},
|
|
2637
3960
|
"variant": {
|
|
2638
3961
|
"type": "string"
|
|
2639
3962
|
}
|
|
@@ -2649,6 +3972,95 @@
|
|
|
2649
3972
|
"model": {
|
|
2650
3973
|
"type": "string"
|
|
2651
3974
|
},
|
|
3975
|
+
"models": {
|
|
3976
|
+
"type": "array",
|
|
3977
|
+
"items": {
|
|
3978
|
+
"anyOf": [
|
|
3979
|
+
{
|
|
3980
|
+
"type": "string"
|
|
3981
|
+
},
|
|
3982
|
+
{
|
|
3983
|
+
"type": "object",
|
|
3984
|
+
"properties": {
|
|
3985
|
+
"model": {
|
|
3986
|
+
"type": "string"
|
|
3987
|
+
},
|
|
3988
|
+
"reasoning": {
|
|
3989
|
+
"anyOf": [
|
|
3990
|
+
{
|
|
3991
|
+
"type": "string",
|
|
3992
|
+
"enum": [
|
|
3993
|
+
"off",
|
|
3994
|
+
"minimal",
|
|
3995
|
+
"low",
|
|
3996
|
+
"medium",
|
|
3997
|
+
"high",
|
|
3998
|
+
"xhigh",
|
|
3999
|
+
"max",
|
|
4000
|
+
"auto"
|
|
4001
|
+
]
|
|
4002
|
+
},
|
|
4003
|
+
{
|
|
4004
|
+
"type": "string"
|
|
4005
|
+
}
|
|
4006
|
+
]
|
|
4007
|
+
},
|
|
4008
|
+
"variant": {
|
|
4009
|
+
"type": "string"
|
|
4010
|
+
},
|
|
4011
|
+
"reasoningEffort": {
|
|
4012
|
+
"type": "string",
|
|
4013
|
+
"enum": [
|
|
4014
|
+
"none",
|
|
4015
|
+
"minimal",
|
|
4016
|
+
"low",
|
|
4017
|
+
"medium",
|
|
4018
|
+
"high",
|
|
4019
|
+
"xhigh",
|
|
4020
|
+
"max"
|
|
4021
|
+
]
|
|
4022
|
+
},
|
|
4023
|
+
"temperature": {
|
|
4024
|
+
"type": "number",
|
|
4025
|
+
"minimum": 0,
|
|
4026
|
+
"maximum": 2
|
|
4027
|
+
},
|
|
4028
|
+
"top_p": {
|
|
4029
|
+
"type": "number",
|
|
4030
|
+
"minimum": 0,
|
|
4031
|
+
"maximum": 1
|
|
4032
|
+
},
|
|
4033
|
+
"maxTokens": {
|
|
4034
|
+
"type": "number"
|
|
4035
|
+
},
|
|
4036
|
+
"thinking": {
|
|
4037
|
+
"type": "object",
|
|
4038
|
+
"properties": {
|
|
4039
|
+
"type": {
|
|
4040
|
+
"type": "string",
|
|
4041
|
+
"enum": [
|
|
4042
|
+
"enabled",
|
|
4043
|
+
"disabled"
|
|
4044
|
+
]
|
|
4045
|
+
},
|
|
4046
|
+
"budgetTokens": {
|
|
4047
|
+
"type": "number"
|
|
4048
|
+
}
|
|
4049
|
+
},
|
|
4050
|
+
"required": [
|
|
4051
|
+
"type"
|
|
4052
|
+
],
|
|
4053
|
+
"additionalProperties": false
|
|
4054
|
+
}
|
|
4055
|
+
},
|
|
4056
|
+
"required": [
|
|
4057
|
+
"model"
|
|
4058
|
+
],
|
|
4059
|
+
"additionalProperties": false
|
|
4060
|
+
}
|
|
4061
|
+
]
|
|
4062
|
+
}
|
|
4063
|
+
},
|
|
2652
4064
|
"fallback_models": {
|
|
2653
4065
|
"anyOf": [
|
|
2654
4066
|
{
|
|
@@ -2668,6 +4080,26 @@
|
|
|
2668
4080
|
"model": {
|
|
2669
4081
|
"type": "string"
|
|
2670
4082
|
},
|
|
4083
|
+
"reasoning": {
|
|
4084
|
+
"anyOf": [
|
|
4085
|
+
{
|
|
4086
|
+
"type": "string",
|
|
4087
|
+
"enum": [
|
|
4088
|
+
"off",
|
|
4089
|
+
"minimal",
|
|
4090
|
+
"low",
|
|
4091
|
+
"medium",
|
|
4092
|
+
"high",
|
|
4093
|
+
"xhigh",
|
|
4094
|
+
"max",
|
|
4095
|
+
"auto"
|
|
4096
|
+
]
|
|
4097
|
+
},
|
|
4098
|
+
{
|
|
4099
|
+
"type": "string"
|
|
4100
|
+
}
|
|
4101
|
+
]
|
|
4102
|
+
},
|
|
2671
4103
|
"variant": {
|
|
2672
4104
|
"type": "string"
|
|
2673
4105
|
},
|
|
@@ -2735,6 +4167,26 @@
|
|
|
2735
4167
|
"model": {
|
|
2736
4168
|
"type": "string"
|
|
2737
4169
|
},
|
|
4170
|
+
"reasoning": {
|
|
4171
|
+
"anyOf": [
|
|
4172
|
+
{
|
|
4173
|
+
"type": "string",
|
|
4174
|
+
"enum": [
|
|
4175
|
+
"off",
|
|
4176
|
+
"minimal",
|
|
4177
|
+
"low",
|
|
4178
|
+
"medium",
|
|
4179
|
+
"high",
|
|
4180
|
+
"xhigh",
|
|
4181
|
+
"max",
|
|
4182
|
+
"auto"
|
|
4183
|
+
]
|
|
4184
|
+
},
|
|
4185
|
+
{
|
|
4186
|
+
"type": "string"
|
|
4187
|
+
}
|
|
4188
|
+
]
|
|
4189
|
+
},
|
|
2738
4190
|
"variant": {
|
|
2739
4191
|
"type": "string"
|
|
2740
4192
|
},
|
|
@@ -2793,6 +4245,26 @@
|
|
|
2793
4245
|
}
|
|
2794
4246
|
]
|
|
2795
4247
|
},
|
|
4248
|
+
"reasoning": {
|
|
4249
|
+
"anyOf": [
|
|
4250
|
+
{
|
|
4251
|
+
"type": "string",
|
|
4252
|
+
"enum": [
|
|
4253
|
+
"off",
|
|
4254
|
+
"minimal",
|
|
4255
|
+
"low",
|
|
4256
|
+
"medium",
|
|
4257
|
+
"high",
|
|
4258
|
+
"xhigh",
|
|
4259
|
+
"max",
|
|
4260
|
+
"auto"
|
|
4261
|
+
]
|
|
4262
|
+
},
|
|
4263
|
+
{
|
|
4264
|
+
"type": "string"
|
|
4265
|
+
}
|
|
4266
|
+
]
|
|
4267
|
+
},
|
|
2796
4268
|
"variant": {
|
|
2797
4269
|
"type": "string"
|
|
2798
4270
|
},
|
|
@@ -2985,8 +4457,28 @@
|
|
|
2985
4457
|
"model": {
|
|
2986
4458
|
"type": "string"
|
|
2987
4459
|
},
|
|
2988
|
-
"
|
|
2989
|
-
"
|
|
4460
|
+
"reasoning": {
|
|
4461
|
+
"anyOf": [
|
|
4462
|
+
{
|
|
4463
|
+
"type": "string",
|
|
4464
|
+
"enum": [
|
|
4465
|
+
"off",
|
|
4466
|
+
"minimal",
|
|
4467
|
+
"low",
|
|
4468
|
+
"medium",
|
|
4469
|
+
"high",
|
|
4470
|
+
"xhigh",
|
|
4471
|
+
"max",
|
|
4472
|
+
"auto"
|
|
4473
|
+
]
|
|
4474
|
+
},
|
|
4475
|
+
{
|
|
4476
|
+
"type": "string"
|
|
4477
|
+
}
|
|
4478
|
+
]
|
|
4479
|
+
},
|
|
4480
|
+
"variant": {
|
|
4481
|
+
"type": "string"
|
|
2990
4482
|
}
|
|
2991
4483
|
},
|
|
2992
4484
|
"additionalProperties": false
|
|
@@ -2997,6 +4489,26 @@
|
|
|
2997
4489
|
"model": {
|
|
2998
4490
|
"type": "string"
|
|
2999
4491
|
},
|
|
4492
|
+
"reasoning": {
|
|
4493
|
+
"anyOf": [
|
|
4494
|
+
{
|
|
4495
|
+
"type": "string",
|
|
4496
|
+
"enum": [
|
|
4497
|
+
"off",
|
|
4498
|
+
"minimal",
|
|
4499
|
+
"low",
|
|
4500
|
+
"medium",
|
|
4501
|
+
"high",
|
|
4502
|
+
"xhigh",
|
|
4503
|
+
"max",
|
|
4504
|
+
"auto"
|
|
4505
|
+
]
|
|
4506
|
+
},
|
|
4507
|
+
{
|
|
4508
|
+
"type": "string"
|
|
4509
|
+
}
|
|
4510
|
+
]
|
|
4511
|
+
},
|
|
3000
4512
|
"variant": {
|
|
3001
4513
|
"type": "string"
|
|
3002
4514
|
}
|
|
@@ -3012,6 +4524,95 @@
|
|
|
3012
4524
|
"model": {
|
|
3013
4525
|
"type": "string"
|
|
3014
4526
|
},
|
|
4527
|
+
"models": {
|
|
4528
|
+
"type": "array",
|
|
4529
|
+
"items": {
|
|
4530
|
+
"anyOf": [
|
|
4531
|
+
{
|
|
4532
|
+
"type": "string"
|
|
4533
|
+
},
|
|
4534
|
+
{
|
|
4535
|
+
"type": "object",
|
|
4536
|
+
"properties": {
|
|
4537
|
+
"model": {
|
|
4538
|
+
"type": "string"
|
|
4539
|
+
},
|
|
4540
|
+
"reasoning": {
|
|
4541
|
+
"anyOf": [
|
|
4542
|
+
{
|
|
4543
|
+
"type": "string",
|
|
4544
|
+
"enum": [
|
|
4545
|
+
"off",
|
|
4546
|
+
"minimal",
|
|
4547
|
+
"low",
|
|
4548
|
+
"medium",
|
|
4549
|
+
"high",
|
|
4550
|
+
"xhigh",
|
|
4551
|
+
"max",
|
|
4552
|
+
"auto"
|
|
4553
|
+
]
|
|
4554
|
+
},
|
|
4555
|
+
{
|
|
4556
|
+
"type": "string"
|
|
4557
|
+
}
|
|
4558
|
+
]
|
|
4559
|
+
},
|
|
4560
|
+
"variant": {
|
|
4561
|
+
"type": "string"
|
|
4562
|
+
},
|
|
4563
|
+
"reasoningEffort": {
|
|
4564
|
+
"type": "string",
|
|
4565
|
+
"enum": [
|
|
4566
|
+
"none",
|
|
4567
|
+
"minimal",
|
|
4568
|
+
"low",
|
|
4569
|
+
"medium",
|
|
4570
|
+
"high",
|
|
4571
|
+
"xhigh",
|
|
4572
|
+
"max"
|
|
4573
|
+
]
|
|
4574
|
+
},
|
|
4575
|
+
"temperature": {
|
|
4576
|
+
"type": "number",
|
|
4577
|
+
"minimum": 0,
|
|
4578
|
+
"maximum": 2
|
|
4579
|
+
},
|
|
4580
|
+
"top_p": {
|
|
4581
|
+
"type": "number",
|
|
4582
|
+
"minimum": 0,
|
|
4583
|
+
"maximum": 1
|
|
4584
|
+
},
|
|
4585
|
+
"maxTokens": {
|
|
4586
|
+
"type": "number"
|
|
4587
|
+
},
|
|
4588
|
+
"thinking": {
|
|
4589
|
+
"type": "object",
|
|
4590
|
+
"properties": {
|
|
4591
|
+
"type": {
|
|
4592
|
+
"type": "string",
|
|
4593
|
+
"enum": [
|
|
4594
|
+
"enabled",
|
|
4595
|
+
"disabled"
|
|
4596
|
+
]
|
|
4597
|
+
},
|
|
4598
|
+
"budgetTokens": {
|
|
4599
|
+
"type": "number"
|
|
4600
|
+
}
|
|
4601
|
+
},
|
|
4602
|
+
"required": [
|
|
4603
|
+
"type"
|
|
4604
|
+
],
|
|
4605
|
+
"additionalProperties": false
|
|
4606
|
+
}
|
|
4607
|
+
},
|
|
4608
|
+
"required": [
|
|
4609
|
+
"model"
|
|
4610
|
+
],
|
|
4611
|
+
"additionalProperties": false
|
|
4612
|
+
}
|
|
4613
|
+
]
|
|
4614
|
+
}
|
|
4615
|
+
},
|
|
3015
4616
|
"fallback_models": {
|
|
3016
4617
|
"anyOf": [
|
|
3017
4618
|
{
|
|
@@ -3031,6 +4632,26 @@
|
|
|
3031
4632
|
"model": {
|
|
3032
4633
|
"type": "string"
|
|
3033
4634
|
},
|
|
4635
|
+
"reasoning": {
|
|
4636
|
+
"anyOf": [
|
|
4637
|
+
{
|
|
4638
|
+
"type": "string",
|
|
4639
|
+
"enum": [
|
|
4640
|
+
"off",
|
|
4641
|
+
"minimal",
|
|
4642
|
+
"low",
|
|
4643
|
+
"medium",
|
|
4644
|
+
"high",
|
|
4645
|
+
"xhigh",
|
|
4646
|
+
"max",
|
|
4647
|
+
"auto"
|
|
4648
|
+
]
|
|
4649
|
+
},
|
|
4650
|
+
{
|
|
4651
|
+
"type": "string"
|
|
4652
|
+
}
|
|
4653
|
+
]
|
|
4654
|
+
},
|
|
3034
4655
|
"variant": {
|
|
3035
4656
|
"type": "string"
|
|
3036
4657
|
},
|
|
@@ -3098,6 +4719,26 @@
|
|
|
3098
4719
|
"model": {
|
|
3099
4720
|
"type": "string"
|
|
3100
4721
|
},
|
|
4722
|
+
"reasoning": {
|
|
4723
|
+
"anyOf": [
|
|
4724
|
+
{
|
|
4725
|
+
"type": "string",
|
|
4726
|
+
"enum": [
|
|
4727
|
+
"off",
|
|
4728
|
+
"minimal",
|
|
4729
|
+
"low",
|
|
4730
|
+
"medium",
|
|
4731
|
+
"high",
|
|
4732
|
+
"xhigh",
|
|
4733
|
+
"max",
|
|
4734
|
+
"auto"
|
|
4735
|
+
]
|
|
4736
|
+
},
|
|
4737
|
+
{
|
|
4738
|
+
"type": "string"
|
|
4739
|
+
}
|
|
4740
|
+
]
|
|
4741
|
+
},
|
|
3101
4742
|
"variant": {
|
|
3102
4743
|
"type": "string"
|
|
3103
4744
|
},
|
|
@@ -3156,6 +4797,26 @@
|
|
|
3156
4797
|
}
|
|
3157
4798
|
]
|
|
3158
4799
|
},
|
|
4800
|
+
"reasoning": {
|
|
4801
|
+
"anyOf": [
|
|
4802
|
+
{
|
|
4803
|
+
"type": "string",
|
|
4804
|
+
"enum": [
|
|
4805
|
+
"off",
|
|
4806
|
+
"minimal",
|
|
4807
|
+
"low",
|
|
4808
|
+
"medium",
|
|
4809
|
+
"high",
|
|
4810
|
+
"xhigh",
|
|
4811
|
+
"max",
|
|
4812
|
+
"auto"
|
|
4813
|
+
]
|
|
4814
|
+
},
|
|
4815
|
+
{
|
|
4816
|
+
"type": "string"
|
|
4817
|
+
}
|
|
4818
|
+
]
|
|
4819
|
+
},
|
|
3159
4820
|
"variant": {
|
|
3160
4821
|
"type": "string"
|
|
3161
4822
|
},
|
|
@@ -3348,6 +5009,26 @@
|
|
|
3348
5009
|
"model": {
|
|
3349
5010
|
"type": "string"
|
|
3350
5011
|
},
|
|
5012
|
+
"reasoning": {
|
|
5013
|
+
"anyOf": [
|
|
5014
|
+
{
|
|
5015
|
+
"type": "string",
|
|
5016
|
+
"enum": [
|
|
5017
|
+
"off",
|
|
5018
|
+
"minimal",
|
|
5019
|
+
"low",
|
|
5020
|
+
"medium",
|
|
5021
|
+
"high",
|
|
5022
|
+
"xhigh",
|
|
5023
|
+
"max",
|
|
5024
|
+
"auto"
|
|
5025
|
+
]
|
|
5026
|
+
},
|
|
5027
|
+
{
|
|
5028
|
+
"type": "string"
|
|
5029
|
+
}
|
|
5030
|
+
]
|
|
5031
|
+
},
|
|
3351
5032
|
"variant": {
|
|
3352
5033
|
"type": "string"
|
|
3353
5034
|
}
|
|
@@ -3360,6 +5041,26 @@
|
|
|
3360
5041
|
"model": {
|
|
3361
5042
|
"type": "string"
|
|
3362
5043
|
},
|
|
5044
|
+
"reasoning": {
|
|
5045
|
+
"anyOf": [
|
|
5046
|
+
{
|
|
5047
|
+
"type": "string",
|
|
5048
|
+
"enum": [
|
|
5049
|
+
"off",
|
|
5050
|
+
"minimal",
|
|
5051
|
+
"low",
|
|
5052
|
+
"medium",
|
|
5053
|
+
"high",
|
|
5054
|
+
"xhigh",
|
|
5055
|
+
"max",
|
|
5056
|
+
"auto"
|
|
5057
|
+
]
|
|
5058
|
+
},
|
|
5059
|
+
{
|
|
5060
|
+
"type": "string"
|
|
5061
|
+
}
|
|
5062
|
+
]
|
|
5063
|
+
},
|
|
3363
5064
|
"variant": {
|
|
3364
5065
|
"type": "string"
|
|
3365
5066
|
}
|
|
@@ -3375,25 +5076,39 @@
|
|
|
3375
5076
|
"model": {
|
|
3376
5077
|
"type": "string"
|
|
3377
5078
|
},
|
|
3378
|
-
"
|
|
3379
|
-
"
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
{
|
|
3384
|
-
"type": "array",
|
|
3385
|
-
"items": {
|
|
5079
|
+
"models": {
|
|
5080
|
+
"type": "array",
|
|
5081
|
+
"items": {
|
|
5082
|
+
"anyOf": [
|
|
5083
|
+
{
|
|
3386
5084
|
"type": "string"
|
|
3387
|
-
}
|
|
3388
|
-
|
|
3389
|
-
{
|
|
3390
|
-
"type": "array",
|
|
3391
|
-
"items": {
|
|
5085
|
+
},
|
|
5086
|
+
{
|
|
3392
5087
|
"type": "object",
|
|
3393
5088
|
"properties": {
|
|
3394
5089
|
"model": {
|
|
3395
5090
|
"type": "string"
|
|
3396
5091
|
},
|
|
5092
|
+
"reasoning": {
|
|
5093
|
+
"anyOf": [
|
|
5094
|
+
{
|
|
5095
|
+
"type": "string",
|
|
5096
|
+
"enum": [
|
|
5097
|
+
"off",
|
|
5098
|
+
"minimal",
|
|
5099
|
+
"low",
|
|
5100
|
+
"medium",
|
|
5101
|
+
"high",
|
|
5102
|
+
"xhigh",
|
|
5103
|
+
"max",
|
|
5104
|
+
"auto"
|
|
5105
|
+
]
|
|
5106
|
+
},
|
|
5107
|
+
{
|
|
5108
|
+
"type": "string"
|
|
5109
|
+
}
|
|
5110
|
+
]
|
|
5111
|
+
},
|
|
3397
5112
|
"variant": {
|
|
3398
5113
|
"type": "string"
|
|
3399
5114
|
},
|
|
@@ -3447,51 +5162,166 @@
|
|
|
3447
5162
|
],
|
|
3448
5163
|
"additionalProperties": false
|
|
3449
5164
|
}
|
|
5165
|
+
]
|
|
5166
|
+
}
|
|
5167
|
+
},
|
|
5168
|
+
"fallback_models": {
|
|
5169
|
+
"anyOf": [
|
|
5170
|
+
{
|
|
5171
|
+
"type": "string"
|
|
3450
5172
|
},
|
|
3451
5173
|
{
|
|
3452
5174
|
"type": "array",
|
|
3453
5175
|
"items": {
|
|
3454
|
-
"
|
|
3455
|
-
|
|
5176
|
+
"type": "string"
|
|
5177
|
+
}
|
|
5178
|
+
},
|
|
5179
|
+
{
|
|
5180
|
+
"type": "array",
|
|
5181
|
+
"items": {
|
|
5182
|
+
"type": "object",
|
|
5183
|
+
"properties": {
|
|
5184
|
+
"model": {
|
|
3456
5185
|
"type": "string"
|
|
3457
5186
|
},
|
|
3458
|
-
{
|
|
3459
|
-
"
|
|
3460
|
-
|
|
3461
|
-
"model": {
|
|
3462
|
-
"type": "string"
|
|
3463
|
-
},
|
|
3464
|
-
"variant": {
|
|
3465
|
-
"type": "string"
|
|
3466
|
-
},
|
|
3467
|
-
"reasoningEffort": {
|
|
5187
|
+
"reasoning": {
|
|
5188
|
+
"anyOf": [
|
|
5189
|
+
{
|
|
3468
5190
|
"type": "string",
|
|
3469
5191
|
"enum": [
|
|
3470
|
-
"
|
|
5192
|
+
"off",
|
|
3471
5193
|
"minimal",
|
|
3472
5194
|
"low",
|
|
3473
5195
|
"medium",
|
|
3474
5196
|
"high",
|
|
3475
5197
|
"xhigh",
|
|
3476
|
-
"max"
|
|
5198
|
+
"max",
|
|
5199
|
+
"auto"
|
|
3477
5200
|
]
|
|
3478
5201
|
},
|
|
3479
|
-
|
|
3480
|
-
"type": "
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
"
|
|
3493
|
-
|
|
3494
|
-
|
|
5202
|
+
{
|
|
5203
|
+
"type": "string"
|
|
5204
|
+
}
|
|
5205
|
+
]
|
|
5206
|
+
},
|
|
5207
|
+
"variant": {
|
|
5208
|
+
"type": "string"
|
|
5209
|
+
},
|
|
5210
|
+
"reasoningEffort": {
|
|
5211
|
+
"type": "string",
|
|
5212
|
+
"enum": [
|
|
5213
|
+
"none",
|
|
5214
|
+
"minimal",
|
|
5215
|
+
"low",
|
|
5216
|
+
"medium",
|
|
5217
|
+
"high",
|
|
5218
|
+
"xhigh",
|
|
5219
|
+
"max"
|
|
5220
|
+
]
|
|
5221
|
+
},
|
|
5222
|
+
"temperature": {
|
|
5223
|
+
"type": "number",
|
|
5224
|
+
"minimum": 0,
|
|
5225
|
+
"maximum": 2
|
|
5226
|
+
},
|
|
5227
|
+
"top_p": {
|
|
5228
|
+
"type": "number",
|
|
5229
|
+
"minimum": 0,
|
|
5230
|
+
"maximum": 1
|
|
5231
|
+
},
|
|
5232
|
+
"maxTokens": {
|
|
5233
|
+
"type": "number"
|
|
5234
|
+
},
|
|
5235
|
+
"thinking": {
|
|
5236
|
+
"type": "object",
|
|
5237
|
+
"properties": {
|
|
5238
|
+
"type": {
|
|
5239
|
+
"type": "string",
|
|
5240
|
+
"enum": [
|
|
5241
|
+
"enabled",
|
|
5242
|
+
"disabled"
|
|
5243
|
+
]
|
|
5244
|
+
},
|
|
5245
|
+
"budgetTokens": {
|
|
5246
|
+
"type": "number"
|
|
5247
|
+
}
|
|
5248
|
+
},
|
|
5249
|
+
"required": [
|
|
5250
|
+
"type"
|
|
5251
|
+
],
|
|
5252
|
+
"additionalProperties": false
|
|
5253
|
+
}
|
|
5254
|
+
},
|
|
5255
|
+
"required": [
|
|
5256
|
+
"model"
|
|
5257
|
+
],
|
|
5258
|
+
"additionalProperties": false
|
|
5259
|
+
}
|
|
5260
|
+
},
|
|
5261
|
+
{
|
|
5262
|
+
"type": "array",
|
|
5263
|
+
"items": {
|
|
5264
|
+
"anyOf": [
|
|
5265
|
+
{
|
|
5266
|
+
"type": "string"
|
|
5267
|
+
},
|
|
5268
|
+
{
|
|
5269
|
+
"type": "object",
|
|
5270
|
+
"properties": {
|
|
5271
|
+
"model": {
|
|
5272
|
+
"type": "string"
|
|
5273
|
+
},
|
|
5274
|
+
"reasoning": {
|
|
5275
|
+
"anyOf": [
|
|
5276
|
+
{
|
|
5277
|
+
"type": "string",
|
|
5278
|
+
"enum": [
|
|
5279
|
+
"off",
|
|
5280
|
+
"minimal",
|
|
5281
|
+
"low",
|
|
5282
|
+
"medium",
|
|
5283
|
+
"high",
|
|
5284
|
+
"xhigh",
|
|
5285
|
+
"max",
|
|
5286
|
+
"auto"
|
|
5287
|
+
]
|
|
5288
|
+
},
|
|
5289
|
+
{
|
|
5290
|
+
"type": "string"
|
|
5291
|
+
}
|
|
5292
|
+
]
|
|
5293
|
+
},
|
|
5294
|
+
"variant": {
|
|
5295
|
+
"type": "string"
|
|
5296
|
+
},
|
|
5297
|
+
"reasoningEffort": {
|
|
5298
|
+
"type": "string",
|
|
5299
|
+
"enum": [
|
|
5300
|
+
"none",
|
|
5301
|
+
"minimal",
|
|
5302
|
+
"low",
|
|
5303
|
+
"medium",
|
|
5304
|
+
"high",
|
|
5305
|
+
"xhigh",
|
|
5306
|
+
"max"
|
|
5307
|
+
]
|
|
5308
|
+
},
|
|
5309
|
+
"temperature": {
|
|
5310
|
+
"type": "number",
|
|
5311
|
+
"minimum": 0,
|
|
5312
|
+
"maximum": 2
|
|
5313
|
+
},
|
|
5314
|
+
"top_p": {
|
|
5315
|
+
"type": "number",
|
|
5316
|
+
"minimum": 0,
|
|
5317
|
+
"maximum": 1
|
|
5318
|
+
},
|
|
5319
|
+
"maxTokens": {
|
|
5320
|
+
"type": "number"
|
|
5321
|
+
},
|
|
5322
|
+
"thinking": {
|
|
5323
|
+
"type": "object",
|
|
5324
|
+
"properties": {
|
|
3495
5325
|
"type": {
|
|
3496
5326
|
"type": "string",
|
|
3497
5327
|
"enum": [
|
|
@@ -3519,6 +5349,26 @@
|
|
|
3519
5349
|
}
|
|
3520
5350
|
]
|
|
3521
5351
|
},
|
|
5352
|
+
"reasoning": {
|
|
5353
|
+
"anyOf": [
|
|
5354
|
+
{
|
|
5355
|
+
"type": "string",
|
|
5356
|
+
"enum": [
|
|
5357
|
+
"off",
|
|
5358
|
+
"minimal",
|
|
5359
|
+
"low",
|
|
5360
|
+
"medium",
|
|
5361
|
+
"high",
|
|
5362
|
+
"xhigh",
|
|
5363
|
+
"max",
|
|
5364
|
+
"auto"
|
|
5365
|
+
]
|
|
5366
|
+
},
|
|
5367
|
+
{
|
|
5368
|
+
"type": "string"
|
|
5369
|
+
}
|
|
5370
|
+
]
|
|
5371
|
+
},
|
|
3522
5372
|
"variant": {
|
|
3523
5373
|
"type": "string"
|
|
3524
5374
|
},
|
|
@@ -3711,6 +5561,26 @@
|
|
|
3711
5561
|
"model": {
|
|
3712
5562
|
"type": "string"
|
|
3713
5563
|
},
|
|
5564
|
+
"reasoning": {
|
|
5565
|
+
"anyOf": [
|
|
5566
|
+
{
|
|
5567
|
+
"type": "string",
|
|
5568
|
+
"enum": [
|
|
5569
|
+
"off",
|
|
5570
|
+
"minimal",
|
|
5571
|
+
"low",
|
|
5572
|
+
"medium",
|
|
5573
|
+
"high",
|
|
5574
|
+
"xhigh",
|
|
5575
|
+
"max",
|
|
5576
|
+
"auto"
|
|
5577
|
+
]
|
|
5578
|
+
},
|
|
5579
|
+
{
|
|
5580
|
+
"type": "string"
|
|
5581
|
+
}
|
|
5582
|
+
]
|
|
5583
|
+
},
|
|
3714
5584
|
"variant": {
|
|
3715
5585
|
"type": "string"
|
|
3716
5586
|
}
|
|
@@ -3723,6 +5593,26 @@
|
|
|
3723
5593
|
"model": {
|
|
3724
5594
|
"type": "string"
|
|
3725
5595
|
},
|
|
5596
|
+
"reasoning": {
|
|
5597
|
+
"anyOf": [
|
|
5598
|
+
{
|
|
5599
|
+
"type": "string",
|
|
5600
|
+
"enum": [
|
|
5601
|
+
"off",
|
|
5602
|
+
"minimal",
|
|
5603
|
+
"low",
|
|
5604
|
+
"medium",
|
|
5605
|
+
"high",
|
|
5606
|
+
"xhigh",
|
|
5607
|
+
"max",
|
|
5608
|
+
"auto"
|
|
5609
|
+
]
|
|
5610
|
+
},
|
|
5611
|
+
{
|
|
5612
|
+
"type": "string"
|
|
5613
|
+
}
|
|
5614
|
+
]
|
|
5615
|
+
},
|
|
3726
5616
|
"variant": {
|
|
3727
5617
|
"type": "string"
|
|
3728
5618
|
}
|
|
@@ -3738,6 +5628,95 @@
|
|
|
3738
5628
|
"model": {
|
|
3739
5629
|
"type": "string"
|
|
3740
5630
|
},
|
|
5631
|
+
"models": {
|
|
5632
|
+
"type": "array",
|
|
5633
|
+
"items": {
|
|
5634
|
+
"anyOf": [
|
|
5635
|
+
{
|
|
5636
|
+
"type": "string"
|
|
5637
|
+
},
|
|
5638
|
+
{
|
|
5639
|
+
"type": "object",
|
|
5640
|
+
"properties": {
|
|
5641
|
+
"model": {
|
|
5642
|
+
"type": "string"
|
|
5643
|
+
},
|
|
5644
|
+
"reasoning": {
|
|
5645
|
+
"anyOf": [
|
|
5646
|
+
{
|
|
5647
|
+
"type": "string",
|
|
5648
|
+
"enum": [
|
|
5649
|
+
"off",
|
|
5650
|
+
"minimal",
|
|
5651
|
+
"low",
|
|
5652
|
+
"medium",
|
|
5653
|
+
"high",
|
|
5654
|
+
"xhigh",
|
|
5655
|
+
"max",
|
|
5656
|
+
"auto"
|
|
5657
|
+
]
|
|
5658
|
+
},
|
|
5659
|
+
{
|
|
5660
|
+
"type": "string"
|
|
5661
|
+
}
|
|
5662
|
+
]
|
|
5663
|
+
},
|
|
5664
|
+
"variant": {
|
|
5665
|
+
"type": "string"
|
|
5666
|
+
},
|
|
5667
|
+
"reasoningEffort": {
|
|
5668
|
+
"type": "string",
|
|
5669
|
+
"enum": [
|
|
5670
|
+
"none",
|
|
5671
|
+
"minimal",
|
|
5672
|
+
"low",
|
|
5673
|
+
"medium",
|
|
5674
|
+
"high",
|
|
5675
|
+
"xhigh",
|
|
5676
|
+
"max"
|
|
5677
|
+
]
|
|
5678
|
+
},
|
|
5679
|
+
"temperature": {
|
|
5680
|
+
"type": "number",
|
|
5681
|
+
"minimum": 0,
|
|
5682
|
+
"maximum": 2
|
|
5683
|
+
},
|
|
5684
|
+
"top_p": {
|
|
5685
|
+
"type": "number",
|
|
5686
|
+
"minimum": 0,
|
|
5687
|
+
"maximum": 1
|
|
5688
|
+
},
|
|
5689
|
+
"maxTokens": {
|
|
5690
|
+
"type": "number"
|
|
5691
|
+
},
|
|
5692
|
+
"thinking": {
|
|
5693
|
+
"type": "object",
|
|
5694
|
+
"properties": {
|
|
5695
|
+
"type": {
|
|
5696
|
+
"type": "string",
|
|
5697
|
+
"enum": [
|
|
5698
|
+
"enabled",
|
|
5699
|
+
"disabled"
|
|
5700
|
+
]
|
|
5701
|
+
},
|
|
5702
|
+
"budgetTokens": {
|
|
5703
|
+
"type": "number"
|
|
5704
|
+
}
|
|
5705
|
+
},
|
|
5706
|
+
"required": [
|
|
5707
|
+
"type"
|
|
5708
|
+
],
|
|
5709
|
+
"additionalProperties": false
|
|
5710
|
+
}
|
|
5711
|
+
},
|
|
5712
|
+
"required": [
|
|
5713
|
+
"model"
|
|
5714
|
+
],
|
|
5715
|
+
"additionalProperties": false
|
|
5716
|
+
}
|
|
5717
|
+
]
|
|
5718
|
+
}
|
|
5719
|
+
},
|
|
3741
5720
|
"fallback_models": {
|
|
3742
5721
|
"anyOf": [
|
|
3743
5722
|
{
|
|
@@ -3757,6 +5736,26 @@
|
|
|
3757
5736
|
"model": {
|
|
3758
5737
|
"type": "string"
|
|
3759
5738
|
},
|
|
5739
|
+
"reasoning": {
|
|
5740
|
+
"anyOf": [
|
|
5741
|
+
{
|
|
5742
|
+
"type": "string",
|
|
5743
|
+
"enum": [
|
|
5744
|
+
"off",
|
|
5745
|
+
"minimal",
|
|
5746
|
+
"low",
|
|
5747
|
+
"medium",
|
|
5748
|
+
"high",
|
|
5749
|
+
"xhigh",
|
|
5750
|
+
"max",
|
|
5751
|
+
"auto"
|
|
5752
|
+
]
|
|
5753
|
+
},
|
|
5754
|
+
{
|
|
5755
|
+
"type": "string"
|
|
5756
|
+
}
|
|
5757
|
+
]
|
|
5758
|
+
},
|
|
3760
5759
|
"variant": {
|
|
3761
5760
|
"type": "string"
|
|
3762
5761
|
},
|
|
@@ -3824,6 +5823,26 @@
|
|
|
3824
5823
|
"model": {
|
|
3825
5824
|
"type": "string"
|
|
3826
5825
|
},
|
|
5826
|
+
"reasoning": {
|
|
5827
|
+
"anyOf": [
|
|
5828
|
+
{
|
|
5829
|
+
"type": "string",
|
|
5830
|
+
"enum": [
|
|
5831
|
+
"off",
|
|
5832
|
+
"minimal",
|
|
5833
|
+
"low",
|
|
5834
|
+
"medium",
|
|
5835
|
+
"high",
|
|
5836
|
+
"xhigh",
|
|
5837
|
+
"max",
|
|
5838
|
+
"auto"
|
|
5839
|
+
]
|
|
5840
|
+
},
|
|
5841
|
+
{
|
|
5842
|
+
"type": "string"
|
|
5843
|
+
}
|
|
5844
|
+
]
|
|
5845
|
+
},
|
|
3827
5846
|
"variant": {
|
|
3828
5847
|
"type": "string"
|
|
3829
5848
|
},
|
|
@@ -3882,9 +5901,29 @@
|
|
|
3882
5901
|
}
|
|
3883
5902
|
]
|
|
3884
5903
|
},
|
|
3885
|
-
"
|
|
3886
|
-
"
|
|
3887
|
-
|
|
5904
|
+
"reasoning": {
|
|
5905
|
+
"anyOf": [
|
|
5906
|
+
{
|
|
5907
|
+
"type": "string",
|
|
5908
|
+
"enum": [
|
|
5909
|
+
"off",
|
|
5910
|
+
"minimal",
|
|
5911
|
+
"low",
|
|
5912
|
+
"medium",
|
|
5913
|
+
"high",
|
|
5914
|
+
"xhigh",
|
|
5915
|
+
"max",
|
|
5916
|
+
"auto"
|
|
5917
|
+
]
|
|
5918
|
+
},
|
|
5919
|
+
{
|
|
5920
|
+
"type": "string"
|
|
5921
|
+
}
|
|
5922
|
+
]
|
|
5923
|
+
},
|
|
5924
|
+
"variant": {
|
|
5925
|
+
"type": "string"
|
|
5926
|
+
},
|
|
3888
5927
|
"category": {
|
|
3889
5928
|
"type": "string"
|
|
3890
5929
|
},
|
|
@@ -4074,6 +6113,26 @@
|
|
|
4074
6113
|
"model": {
|
|
4075
6114
|
"type": "string"
|
|
4076
6115
|
},
|
|
6116
|
+
"reasoning": {
|
|
6117
|
+
"anyOf": [
|
|
6118
|
+
{
|
|
6119
|
+
"type": "string",
|
|
6120
|
+
"enum": [
|
|
6121
|
+
"off",
|
|
6122
|
+
"minimal",
|
|
6123
|
+
"low",
|
|
6124
|
+
"medium",
|
|
6125
|
+
"high",
|
|
6126
|
+
"xhigh",
|
|
6127
|
+
"max",
|
|
6128
|
+
"auto"
|
|
6129
|
+
]
|
|
6130
|
+
},
|
|
6131
|
+
{
|
|
6132
|
+
"type": "string"
|
|
6133
|
+
}
|
|
6134
|
+
]
|
|
6135
|
+
},
|
|
4077
6136
|
"variant": {
|
|
4078
6137
|
"type": "string"
|
|
4079
6138
|
}
|
|
@@ -4086,6 +6145,26 @@
|
|
|
4086
6145
|
"model": {
|
|
4087
6146
|
"type": "string"
|
|
4088
6147
|
},
|
|
6148
|
+
"reasoning": {
|
|
6149
|
+
"anyOf": [
|
|
6150
|
+
{
|
|
6151
|
+
"type": "string",
|
|
6152
|
+
"enum": [
|
|
6153
|
+
"off",
|
|
6154
|
+
"minimal",
|
|
6155
|
+
"low",
|
|
6156
|
+
"medium",
|
|
6157
|
+
"high",
|
|
6158
|
+
"xhigh",
|
|
6159
|
+
"max",
|
|
6160
|
+
"auto"
|
|
6161
|
+
]
|
|
6162
|
+
},
|
|
6163
|
+
{
|
|
6164
|
+
"type": "string"
|
|
6165
|
+
}
|
|
6166
|
+
]
|
|
6167
|
+
},
|
|
4089
6168
|
"variant": {
|
|
4090
6169
|
"type": "string"
|
|
4091
6170
|
}
|
|
@@ -4101,6 +6180,95 @@
|
|
|
4101
6180
|
"model": {
|
|
4102
6181
|
"type": "string"
|
|
4103
6182
|
},
|
|
6183
|
+
"models": {
|
|
6184
|
+
"type": "array",
|
|
6185
|
+
"items": {
|
|
6186
|
+
"anyOf": [
|
|
6187
|
+
{
|
|
6188
|
+
"type": "string"
|
|
6189
|
+
},
|
|
6190
|
+
{
|
|
6191
|
+
"type": "object",
|
|
6192
|
+
"properties": {
|
|
6193
|
+
"model": {
|
|
6194
|
+
"type": "string"
|
|
6195
|
+
},
|
|
6196
|
+
"reasoning": {
|
|
6197
|
+
"anyOf": [
|
|
6198
|
+
{
|
|
6199
|
+
"type": "string",
|
|
6200
|
+
"enum": [
|
|
6201
|
+
"off",
|
|
6202
|
+
"minimal",
|
|
6203
|
+
"low",
|
|
6204
|
+
"medium",
|
|
6205
|
+
"high",
|
|
6206
|
+
"xhigh",
|
|
6207
|
+
"max",
|
|
6208
|
+
"auto"
|
|
6209
|
+
]
|
|
6210
|
+
},
|
|
6211
|
+
{
|
|
6212
|
+
"type": "string"
|
|
6213
|
+
}
|
|
6214
|
+
]
|
|
6215
|
+
},
|
|
6216
|
+
"variant": {
|
|
6217
|
+
"type": "string"
|
|
6218
|
+
},
|
|
6219
|
+
"reasoningEffort": {
|
|
6220
|
+
"type": "string",
|
|
6221
|
+
"enum": [
|
|
6222
|
+
"none",
|
|
6223
|
+
"minimal",
|
|
6224
|
+
"low",
|
|
6225
|
+
"medium",
|
|
6226
|
+
"high",
|
|
6227
|
+
"xhigh",
|
|
6228
|
+
"max"
|
|
6229
|
+
]
|
|
6230
|
+
},
|
|
6231
|
+
"temperature": {
|
|
6232
|
+
"type": "number",
|
|
6233
|
+
"minimum": 0,
|
|
6234
|
+
"maximum": 2
|
|
6235
|
+
},
|
|
6236
|
+
"top_p": {
|
|
6237
|
+
"type": "number",
|
|
6238
|
+
"minimum": 0,
|
|
6239
|
+
"maximum": 1
|
|
6240
|
+
},
|
|
6241
|
+
"maxTokens": {
|
|
6242
|
+
"type": "number"
|
|
6243
|
+
},
|
|
6244
|
+
"thinking": {
|
|
6245
|
+
"type": "object",
|
|
6246
|
+
"properties": {
|
|
6247
|
+
"type": {
|
|
6248
|
+
"type": "string",
|
|
6249
|
+
"enum": [
|
|
6250
|
+
"enabled",
|
|
6251
|
+
"disabled"
|
|
6252
|
+
]
|
|
6253
|
+
},
|
|
6254
|
+
"budgetTokens": {
|
|
6255
|
+
"type": "number"
|
|
6256
|
+
}
|
|
6257
|
+
},
|
|
6258
|
+
"required": [
|
|
6259
|
+
"type"
|
|
6260
|
+
],
|
|
6261
|
+
"additionalProperties": false
|
|
6262
|
+
}
|
|
6263
|
+
},
|
|
6264
|
+
"required": [
|
|
6265
|
+
"model"
|
|
6266
|
+
],
|
|
6267
|
+
"additionalProperties": false
|
|
6268
|
+
}
|
|
6269
|
+
]
|
|
6270
|
+
}
|
|
6271
|
+
},
|
|
4104
6272
|
"fallback_models": {
|
|
4105
6273
|
"anyOf": [
|
|
4106
6274
|
{
|
|
@@ -4120,6 +6288,26 @@
|
|
|
4120
6288
|
"model": {
|
|
4121
6289
|
"type": "string"
|
|
4122
6290
|
},
|
|
6291
|
+
"reasoning": {
|
|
6292
|
+
"anyOf": [
|
|
6293
|
+
{
|
|
6294
|
+
"type": "string",
|
|
6295
|
+
"enum": [
|
|
6296
|
+
"off",
|
|
6297
|
+
"minimal",
|
|
6298
|
+
"low",
|
|
6299
|
+
"medium",
|
|
6300
|
+
"high",
|
|
6301
|
+
"xhigh",
|
|
6302
|
+
"max",
|
|
6303
|
+
"auto"
|
|
6304
|
+
]
|
|
6305
|
+
},
|
|
6306
|
+
{
|
|
6307
|
+
"type": "string"
|
|
6308
|
+
}
|
|
6309
|
+
]
|
|
6310
|
+
},
|
|
4123
6311
|
"variant": {
|
|
4124
6312
|
"type": "string"
|
|
4125
6313
|
},
|
|
@@ -4187,6 +6375,26 @@
|
|
|
4187
6375
|
"model": {
|
|
4188
6376
|
"type": "string"
|
|
4189
6377
|
},
|
|
6378
|
+
"reasoning": {
|
|
6379
|
+
"anyOf": [
|
|
6380
|
+
{
|
|
6381
|
+
"type": "string",
|
|
6382
|
+
"enum": [
|
|
6383
|
+
"off",
|
|
6384
|
+
"minimal",
|
|
6385
|
+
"low",
|
|
6386
|
+
"medium",
|
|
6387
|
+
"high",
|
|
6388
|
+
"xhigh",
|
|
6389
|
+
"max",
|
|
6390
|
+
"auto"
|
|
6391
|
+
]
|
|
6392
|
+
},
|
|
6393
|
+
{
|
|
6394
|
+
"type": "string"
|
|
6395
|
+
}
|
|
6396
|
+
]
|
|
6397
|
+
},
|
|
4190
6398
|
"variant": {
|
|
4191
6399
|
"type": "string"
|
|
4192
6400
|
},
|
|
@@ -4245,6 +6453,26 @@
|
|
|
4245
6453
|
}
|
|
4246
6454
|
]
|
|
4247
6455
|
},
|
|
6456
|
+
"reasoning": {
|
|
6457
|
+
"anyOf": [
|
|
6458
|
+
{
|
|
6459
|
+
"type": "string",
|
|
6460
|
+
"enum": [
|
|
6461
|
+
"off",
|
|
6462
|
+
"minimal",
|
|
6463
|
+
"low",
|
|
6464
|
+
"medium",
|
|
6465
|
+
"high",
|
|
6466
|
+
"xhigh",
|
|
6467
|
+
"max",
|
|
6468
|
+
"auto"
|
|
6469
|
+
]
|
|
6470
|
+
},
|
|
6471
|
+
{
|
|
6472
|
+
"type": "string"
|
|
6473
|
+
}
|
|
6474
|
+
]
|
|
6475
|
+
},
|
|
4248
6476
|
"variant": {
|
|
4249
6477
|
"type": "string"
|
|
4250
6478
|
},
|
|
@@ -4437,6 +6665,26 @@
|
|
|
4437
6665
|
"model": {
|
|
4438
6666
|
"type": "string"
|
|
4439
6667
|
},
|
|
6668
|
+
"reasoning": {
|
|
6669
|
+
"anyOf": [
|
|
6670
|
+
{
|
|
6671
|
+
"type": "string",
|
|
6672
|
+
"enum": [
|
|
6673
|
+
"off",
|
|
6674
|
+
"minimal",
|
|
6675
|
+
"low",
|
|
6676
|
+
"medium",
|
|
6677
|
+
"high",
|
|
6678
|
+
"xhigh",
|
|
6679
|
+
"max",
|
|
6680
|
+
"auto"
|
|
6681
|
+
]
|
|
6682
|
+
},
|
|
6683
|
+
{
|
|
6684
|
+
"type": "string"
|
|
6685
|
+
}
|
|
6686
|
+
]
|
|
6687
|
+
},
|
|
4440
6688
|
"variant": {
|
|
4441
6689
|
"type": "string"
|
|
4442
6690
|
}
|
|
@@ -4449,6 +6697,26 @@
|
|
|
4449
6697
|
"model": {
|
|
4450
6698
|
"type": "string"
|
|
4451
6699
|
},
|
|
6700
|
+
"reasoning": {
|
|
6701
|
+
"anyOf": [
|
|
6702
|
+
{
|
|
6703
|
+
"type": "string",
|
|
6704
|
+
"enum": [
|
|
6705
|
+
"off",
|
|
6706
|
+
"minimal",
|
|
6707
|
+
"low",
|
|
6708
|
+
"medium",
|
|
6709
|
+
"high",
|
|
6710
|
+
"xhigh",
|
|
6711
|
+
"max",
|
|
6712
|
+
"auto"
|
|
6713
|
+
]
|
|
6714
|
+
},
|
|
6715
|
+
{
|
|
6716
|
+
"type": "string"
|
|
6717
|
+
}
|
|
6718
|
+
]
|
|
6719
|
+
},
|
|
4452
6720
|
"variant": {
|
|
4453
6721
|
"type": "string"
|
|
4454
6722
|
}
|
|
@@ -4464,25 +6732,39 @@
|
|
|
4464
6732
|
"model": {
|
|
4465
6733
|
"type": "string"
|
|
4466
6734
|
},
|
|
4467
|
-
"
|
|
4468
|
-
"
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
4472
|
-
{
|
|
4473
|
-
"type": "array",
|
|
4474
|
-
"items": {
|
|
6735
|
+
"models": {
|
|
6736
|
+
"type": "array",
|
|
6737
|
+
"items": {
|
|
6738
|
+
"anyOf": [
|
|
6739
|
+
{
|
|
4475
6740
|
"type": "string"
|
|
4476
|
-
}
|
|
4477
|
-
|
|
4478
|
-
{
|
|
4479
|
-
"type": "array",
|
|
4480
|
-
"items": {
|
|
6741
|
+
},
|
|
6742
|
+
{
|
|
4481
6743
|
"type": "object",
|
|
4482
6744
|
"properties": {
|
|
4483
6745
|
"model": {
|
|
4484
6746
|
"type": "string"
|
|
4485
6747
|
},
|
|
6748
|
+
"reasoning": {
|
|
6749
|
+
"anyOf": [
|
|
6750
|
+
{
|
|
6751
|
+
"type": "string",
|
|
6752
|
+
"enum": [
|
|
6753
|
+
"off",
|
|
6754
|
+
"minimal",
|
|
6755
|
+
"low",
|
|
6756
|
+
"medium",
|
|
6757
|
+
"high",
|
|
6758
|
+
"xhigh",
|
|
6759
|
+
"max",
|
|
6760
|
+
"auto"
|
|
6761
|
+
]
|
|
6762
|
+
},
|
|
6763
|
+
{
|
|
6764
|
+
"type": "string"
|
|
6765
|
+
}
|
|
6766
|
+
]
|
|
6767
|
+
},
|
|
4486
6768
|
"variant": {
|
|
4487
6769
|
"type": "string"
|
|
4488
6770
|
},
|
|
@@ -4536,39 +6818,154 @@
|
|
|
4536
6818
|
],
|
|
4537
6819
|
"additionalProperties": false
|
|
4538
6820
|
}
|
|
6821
|
+
]
|
|
6822
|
+
}
|
|
6823
|
+
},
|
|
6824
|
+
"fallback_models": {
|
|
6825
|
+
"anyOf": [
|
|
6826
|
+
{
|
|
6827
|
+
"type": "string"
|
|
6828
|
+
},
|
|
6829
|
+
{
|
|
6830
|
+
"type": "array",
|
|
6831
|
+
"items": {
|
|
6832
|
+
"type": "string"
|
|
6833
|
+
}
|
|
4539
6834
|
},
|
|
4540
6835
|
{
|
|
4541
6836
|
"type": "array",
|
|
4542
6837
|
"items": {
|
|
4543
|
-
"
|
|
4544
|
-
|
|
6838
|
+
"type": "object",
|
|
6839
|
+
"properties": {
|
|
6840
|
+
"model": {
|
|
4545
6841
|
"type": "string"
|
|
4546
6842
|
},
|
|
4547
|
-
{
|
|
4548
|
-
"
|
|
4549
|
-
|
|
4550
|
-
"model": {
|
|
4551
|
-
"type": "string"
|
|
4552
|
-
},
|
|
4553
|
-
"variant": {
|
|
4554
|
-
"type": "string"
|
|
4555
|
-
},
|
|
4556
|
-
"reasoningEffort": {
|
|
6843
|
+
"reasoning": {
|
|
6844
|
+
"anyOf": [
|
|
6845
|
+
{
|
|
4557
6846
|
"type": "string",
|
|
4558
6847
|
"enum": [
|
|
4559
|
-
"
|
|
6848
|
+
"off",
|
|
4560
6849
|
"minimal",
|
|
4561
6850
|
"low",
|
|
4562
6851
|
"medium",
|
|
4563
6852
|
"high",
|
|
4564
6853
|
"xhigh",
|
|
4565
|
-
"max"
|
|
6854
|
+
"max",
|
|
6855
|
+
"auto"
|
|
4566
6856
|
]
|
|
4567
6857
|
},
|
|
4568
|
-
|
|
4569
|
-
"type": "
|
|
4570
|
-
|
|
4571
|
-
|
|
6858
|
+
{
|
|
6859
|
+
"type": "string"
|
|
6860
|
+
}
|
|
6861
|
+
]
|
|
6862
|
+
},
|
|
6863
|
+
"variant": {
|
|
6864
|
+
"type": "string"
|
|
6865
|
+
},
|
|
6866
|
+
"reasoningEffort": {
|
|
6867
|
+
"type": "string",
|
|
6868
|
+
"enum": [
|
|
6869
|
+
"none",
|
|
6870
|
+
"minimal",
|
|
6871
|
+
"low",
|
|
6872
|
+
"medium",
|
|
6873
|
+
"high",
|
|
6874
|
+
"xhigh",
|
|
6875
|
+
"max"
|
|
6876
|
+
]
|
|
6877
|
+
},
|
|
6878
|
+
"temperature": {
|
|
6879
|
+
"type": "number",
|
|
6880
|
+
"minimum": 0,
|
|
6881
|
+
"maximum": 2
|
|
6882
|
+
},
|
|
6883
|
+
"top_p": {
|
|
6884
|
+
"type": "number",
|
|
6885
|
+
"minimum": 0,
|
|
6886
|
+
"maximum": 1
|
|
6887
|
+
},
|
|
6888
|
+
"maxTokens": {
|
|
6889
|
+
"type": "number"
|
|
6890
|
+
},
|
|
6891
|
+
"thinking": {
|
|
6892
|
+
"type": "object",
|
|
6893
|
+
"properties": {
|
|
6894
|
+
"type": {
|
|
6895
|
+
"type": "string",
|
|
6896
|
+
"enum": [
|
|
6897
|
+
"enabled",
|
|
6898
|
+
"disabled"
|
|
6899
|
+
]
|
|
6900
|
+
},
|
|
6901
|
+
"budgetTokens": {
|
|
6902
|
+
"type": "number"
|
|
6903
|
+
}
|
|
6904
|
+
},
|
|
6905
|
+
"required": [
|
|
6906
|
+
"type"
|
|
6907
|
+
],
|
|
6908
|
+
"additionalProperties": false
|
|
6909
|
+
}
|
|
6910
|
+
},
|
|
6911
|
+
"required": [
|
|
6912
|
+
"model"
|
|
6913
|
+
],
|
|
6914
|
+
"additionalProperties": false
|
|
6915
|
+
}
|
|
6916
|
+
},
|
|
6917
|
+
{
|
|
6918
|
+
"type": "array",
|
|
6919
|
+
"items": {
|
|
6920
|
+
"anyOf": [
|
|
6921
|
+
{
|
|
6922
|
+
"type": "string"
|
|
6923
|
+
},
|
|
6924
|
+
{
|
|
6925
|
+
"type": "object",
|
|
6926
|
+
"properties": {
|
|
6927
|
+
"model": {
|
|
6928
|
+
"type": "string"
|
|
6929
|
+
},
|
|
6930
|
+
"reasoning": {
|
|
6931
|
+
"anyOf": [
|
|
6932
|
+
{
|
|
6933
|
+
"type": "string",
|
|
6934
|
+
"enum": [
|
|
6935
|
+
"off",
|
|
6936
|
+
"minimal",
|
|
6937
|
+
"low",
|
|
6938
|
+
"medium",
|
|
6939
|
+
"high",
|
|
6940
|
+
"xhigh",
|
|
6941
|
+
"max",
|
|
6942
|
+
"auto"
|
|
6943
|
+
]
|
|
6944
|
+
},
|
|
6945
|
+
{
|
|
6946
|
+
"type": "string"
|
|
6947
|
+
}
|
|
6948
|
+
]
|
|
6949
|
+
},
|
|
6950
|
+
"variant": {
|
|
6951
|
+
"type": "string"
|
|
6952
|
+
},
|
|
6953
|
+
"reasoningEffort": {
|
|
6954
|
+
"type": "string",
|
|
6955
|
+
"enum": [
|
|
6956
|
+
"none",
|
|
6957
|
+
"minimal",
|
|
6958
|
+
"low",
|
|
6959
|
+
"medium",
|
|
6960
|
+
"high",
|
|
6961
|
+
"xhigh",
|
|
6962
|
+
"max"
|
|
6963
|
+
]
|
|
6964
|
+
},
|
|
6965
|
+
"temperature": {
|
|
6966
|
+
"type": "number",
|
|
6967
|
+
"minimum": 0,
|
|
6968
|
+
"maximum": 2
|
|
4572
6969
|
},
|
|
4573
6970
|
"top_p": {
|
|
4574
6971
|
"type": "number",
|
|
@@ -4608,6 +7005,26 @@
|
|
|
4608
7005
|
}
|
|
4609
7006
|
]
|
|
4610
7007
|
},
|
|
7008
|
+
"reasoning": {
|
|
7009
|
+
"anyOf": [
|
|
7010
|
+
{
|
|
7011
|
+
"type": "string",
|
|
7012
|
+
"enum": [
|
|
7013
|
+
"off",
|
|
7014
|
+
"minimal",
|
|
7015
|
+
"low",
|
|
7016
|
+
"medium",
|
|
7017
|
+
"high",
|
|
7018
|
+
"xhigh",
|
|
7019
|
+
"max",
|
|
7020
|
+
"auto"
|
|
7021
|
+
]
|
|
7022
|
+
},
|
|
7023
|
+
{
|
|
7024
|
+
"type": "string"
|
|
7025
|
+
}
|
|
7026
|
+
]
|
|
7027
|
+
},
|
|
4611
7028
|
"variant": {
|
|
4612
7029
|
"type": "string"
|
|
4613
7030
|
},
|
|
@@ -4800,6 +7217,26 @@
|
|
|
4800
7217
|
"model": {
|
|
4801
7218
|
"type": "string"
|
|
4802
7219
|
},
|
|
7220
|
+
"reasoning": {
|
|
7221
|
+
"anyOf": [
|
|
7222
|
+
{
|
|
7223
|
+
"type": "string",
|
|
7224
|
+
"enum": [
|
|
7225
|
+
"off",
|
|
7226
|
+
"minimal",
|
|
7227
|
+
"low",
|
|
7228
|
+
"medium",
|
|
7229
|
+
"high",
|
|
7230
|
+
"xhigh",
|
|
7231
|
+
"max",
|
|
7232
|
+
"auto"
|
|
7233
|
+
]
|
|
7234
|
+
},
|
|
7235
|
+
{
|
|
7236
|
+
"type": "string"
|
|
7237
|
+
}
|
|
7238
|
+
]
|
|
7239
|
+
},
|
|
4803
7240
|
"variant": {
|
|
4804
7241
|
"type": "string"
|
|
4805
7242
|
}
|
|
@@ -4812,6 +7249,26 @@
|
|
|
4812
7249
|
"model": {
|
|
4813
7250
|
"type": "string"
|
|
4814
7251
|
},
|
|
7252
|
+
"reasoning": {
|
|
7253
|
+
"anyOf": [
|
|
7254
|
+
{
|
|
7255
|
+
"type": "string",
|
|
7256
|
+
"enum": [
|
|
7257
|
+
"off",
|
|
7258
|
+
"minimal",
|
|
7259
|
+
"low",
|
|
7260
|
+
"medium",
|
|
7261
|
+
"high",
|
|
7262
|
+
"xhigh",
|
|
7263
|
+
"max",
|
|
7264
|
+
"auto"
|
|
7265
|
+
]
|
|
7266
|
+
},
|
|
7267
|
+
{
|
|
7268
|
+
"type": "string"
|
|
7269
|
+
}
|
|
7270
|
+
]
|
|
7271
|
+
},
|
|
4815
7272
|
"variant": {
|
|
4816
7273
|
"type": "string"
|
|
4817
7274
|
}
|
|
@@ -4827,6 +7284,95 @@
|
|
|
4827
7284
|
"model": {
|
|
4828
7285
|
"type": "string"
|
|
4829
7286
|
},
|
|
7287
|
+
"models": {
|
|
7288
|
+
"type": "array",
|
|
7289
|
+
"items": {
|
|
7290
|
+
"anyOf": [
|
|
7291
|
+
{
|
|
7292
|
+
"type": "string"
|
|
7293
|
+
},
|
|
7294
|
+
{
|
|
7295
|
+
"type": "object",
|
|
7296
|
+
"properties": {
|
|
7297
|
+
"model": {
|
|
7298
|
+
"type": "string"
|
|
7299
|
+
},
|
|
7300
|
+
"reasoning": {
|
|
7301
|
+
"anyOf": [
|
|
7302
|
+
{
|
|
7303
|
+
"type": "string",
|
|
7304
|
+
"enum": [
|
|
7305
|
+
"off",
|
|
7306
|
+
"minimal",
|
|
7307
|
+
"low",
|
|
7308
|
+
"medium",
|
|
7309
|
+
"high",
|
|
7310
|
+
"xhigh",
|
|
7311
|
+
"max",
|
|
7312
|
+
"auto"
|
|
7313
|
+
]
|
|
7314
|
+
},
|
|
7315
|
+
{
|
|
7316
|
+
"type": "string"
|
|
7317
|
+
}
|
|
7318
|
+
]
|
|
7319
|
+
},
|
|
7320
|
+
"variant": {
|
|
7321
|
+
"type": "string"
|
|
7322
|
+
},
|
|
7323
|
+
"reasoningEffort": {
|
|
7324
|
+
"type": "string",
|
|
7325
|
+
"enum": [
|
|
7326
|
+
"none",
|
|
7327
|
+
"minimal",
|
|
7328
|
+
"low",
|
|
7329
|
+
"medium",
|
|
7330
|
+
"high",
|
|
7331
|
+
"xhigh",
|
|
7332
|
+
"max"
|
|
7333
|
+
]
|
|
7334
|
+
},
|
|
7335
|
+
"temperature": {
|
|
7336
|
+
"type": "number",
|
|
7337
|
+
"minimum": 0,
|
|
7338
|
+
"maximum": 2
|
|
7339
|
+
},
|
|
7340
|
+
"top_p": {
|
|
7341
|
+
"type": "number",
|
|
7342
|
+
"minimum": 0,
|
|
7343
|
+
"maximum": 1
|
|
7344
|
+
},
|
|
7345
|
+
"maxTokens": {
|
|
7346
|
+
"type": "number"
|
|
7347
|
+
},
|
|
7348
|
+
"thinking": {
|
|
7349
|
+
"type": "object",
|
|
7350
|
+
"properties": {
|
|
7351
|
+
"type": {
|
|
7352
|
+
"type": "string",
|
|
7353
|
+
"enum": [
|
|
7354
|
+
"enabled",
|
|
7355
|
+
"disabled"
|
|
7356
|
+
]
|
|
7357
|
+
},
|
|
7358
|
+
"budgetTokens": {
|
|
7359
|
+
"type": "number"
|
|
7360
|
+
}
|
|
7361
|
+
},
|
|
7362
|
+
"required": [
|
|
7363
|
+
"type"
|
|
7364
|
+
],
|
|
7365
|
+
"additionalProperties": false
|
|
7366
|
+
}
|
|
7367
|
+
},
|
|
7368
|
+
"required": [
|
|
7369
|
+
"model"
|
|
7370
|
+
],
|
|
7371
|
+
"additionalProperties": false
|
|
7372
|
+
}
|
|
7373
|
+
]
|
|
7374
|
+
}
|
|
7375
|
+
},
|
|
4830
7376
|
"fallback_models": {
|
|
4831
7377
|
"anyOf": [
|
|
4832
7378
|
{
|
|
@@ -4846,6 +7392,26 @@
|
|
|
4846
7392
|
"model": {
|
|
4847
7393
|
"type": "string"
|
|
4848
7394
|
},
|
|
7395
|
+
"reasoning": {
|
|
7396
|
+
"anyOf": [
|
|
7397
|
+
{
|
|
7398
|
+
"type": "string",
|
|
7399
|
+
"enum": [
|
|
7400
|
+
"off",
|
|
7401
|
+
"minimal",
|
|
7402
|
+
"low",
|
|
7403
|
+
"medium",
|
|
7404
|
+
"high",
|
|
7405
|
+
"xhigh",
|
|
7406
|
+
"max",
|
|
7407
|
+
"auto"
|
|
7408
|
+
]
|
|
7409
|
+
},
|
|
7410
|
+
{
|
|
7411
|
+
"type": "string"
|
|
7412
|
+
}
|
|
7413
|
+
]
|
|
7414
|
+
},
|
|
4849
7415
|
"variant": {
|
|
4850
7416
|
"type": "string"
|
|
4851
7417
|
},
|
|
@@ -4913,6 +7479,26 @@
|
|
|
4913
7479
|
"model": {
|
|
4914
7480
|
"type": "string"
|
|
4915
7481
|
},
|
|
7482
|
+
"reasoning": {
|
|
7483
|
+
"anyOf": [
|
|
7484
|
+
{
|
|
7485
|
+
"type": "string",
|
|
7486
|
+
"enum": [
|
|
7487
|
+
"off",
|
|
7488
|
+
"minimal",
|
|
7489
|
+
"low",
|
|
7490
|
+
"medium",
|
|
7491
|
+
"high",
|
|
7492
|
+
"xhigh",
|
|
7493
|
+
"max",
|
|
7494
|
+
"auto"
|
|
7495
|
+
]
|
|
7496
|
+
},
|
|
7497
|
+
{
|
|
7498
|
+
"type": "string"
|
|
7499
|
+
}
|
|
7500
|
+
]
|
|
7501
|
+
},
|
|
4916
7502
|
"variant": {
|
|
4917
7503
|
"type": "string"
|
|
4918
7504
|
},
|
|
@@ -4971,6 +7557,26 @@
|
|
|
4971
7557
|
}
|
|
4972
7558
|
]
|
|
4973
7559
|
},
|
|
7560
|
+
"reasoning": {
|
|
7561
|
+
"anyOf": [
|
|
7562
|
+
{
|
|
7563
|
+
"type": "string",
|
|
7564
|
+
"enum": [
|
|
7565
|
+
"off",
|
|
7566
|
+
"minimal",
|
|
7567
|
+
"low",
|
|
7568
|
+
"medium",
|
|
7569
|
+
"high",
|
|
7570
|
+
"xhigh",
|
|
7571
|
+
"max",
|
|
7572
|
+
"auto"
|
|
7573
|
+
]
|
|
7574
|
+
},
|
|
7575
|
+
{
|
|
7576
|
+
"type": "string"
|
|
7577
|
+
}
|
|
7578
|
+
]
|
|
7579
|
+
},
|
|
4974
7580
|
"variant": {
|
|
4975
7581
|
"type": "string"
|
|
4976
7582
|
},
|
|
@@ -5124,73 +7730,202 @@
|
|
|
5124
7730
|
"budgetTokens": {
|
|
5125
7731
|
"type": "number"
|
|
5126
7732
|
}
|
|
5127
|
-
},
|
|
5128
|
-
"required": [
|
|
5129
|
-
"type"
|
|
5130
|
-
],
|
|
5131
|
-
"additionalProperties": false
|
|
5132
|
-
},
|
|
5133
|
-
"reasoningEffort": {
|
|
5134
|
-
"type": "string",
|
|
5135
|
-
"enum": [
|
|
5136
|
-
"none",
|
|
5137
|
-
"minimal",
|
|
5138
|
-
"low",
|
|
5139
|
-
"medium",
|
|
5140
|
-
"high",
|
|
5141
|
-
"xhigh",
|
|
5142
|
-
"max"
|
|
5143
|
-
]
|
|
5144
|
-
},
|
|
5145
|
-
"textVerbosity": {
|
|
5146
|
-
"type": "string",
|
|
5147
|
-
"enum": [
|
|
5148
|
-
"low",
|
|
5149
|
-
"medium",
|
|
5150
|
-
"high"
|
|
7733
|
+
},
|
|
7734
|
+
"required": [
|
|
7735
|
+
"type"
|
|
7736
|
+
],
|
|
7737
|
+
"additionalProperties": false
|
|
7738
|
+
},
|
|
7739
|
+
"reasoningEffort": {
|
|
7740
|
+
"type": "string",
|
|
7741
|
+
"enum": [
|
|
7742
|
+
"none",
|
|
7743
|
+
"minimal",
|
|
7744
|
+
"low",
|
|
7745
|
+
"medium",
|
|
7746
|
+
"high",
|
|
7747
|
+
"xhigh",
|
|
7748
|
+
"max"
|
|
7749
|
+
]
|
|
7750
|
+
},
|
|
7751
|
+
"textVerbosity": {
|
|
7752
|
+
"type": "string",
|
|
7753
|
+
"enum": [
|
|
7754
|
+
"low",
|
|
7755
|
+
"medium",
|
|
7756
|
+
"high"
|
|
7757
|
+
]
|
|
7758
|
+
},
|
|
7759
|
+
"providerOptions": {
|
|
7760
|
+
"type": "object",
|
|
7761
|
+
"propertyNames": {
|
|
7762
|
+
"type": "string"
|
|
7763
|
+
},
|
|
7764
|
+
"additionalProperties": {}
|
|
7765
|
+
},
|
|
7766
|
+
"ultrawork": {
|
|
7767
|
+
"type": "object",
|
|
7768
|
+
"properties": {
|
|
7769
|
+
"model": {
|
|
7770
|
+
"type": "string"
|
|
7771
|
+
},
|
|
7772
|
+
"reasoning": {
|
|
7773
|
+
"anyOf": [
|
|
7774
|
+
{
|
|
7775
|
+
"type": "string",
|
|
7776
|
+
"enum": [
|
|
7777
|
+
"off",
|
|
7778
|
+
"minimal",
|
|
7779
|
+
"low",
|
|
7780
|
+
"medium",
|
|
7781
|
+
"high",
|
|
7782
|
+
"xhigh",
|
|
7783
|
+
"max",
|
|
7784
|
+
"auto"
|
|
7785
|
+
]
|
|
7786
|
+
},
|
|
7787
|
+
{
|
|
7788
|
+
"type": "string"
|
|
7789
|
+
}
|
|
7790
|
+
]
|
|
7791
|
+
},
|
|
7792
|
+
"variant": {
|
|
7793
|
+
"type": "string"
|
|
7794
|
+
}
|
|
7795
|
+
},
|
|
7796
|
+
"additionalProperties": false
|
|
7797
|
+
},
|
|
7798
|
+
"compaction": {
|
|
7799
|
+
"type": "object",
|
|
7800
|
+
"properties": {
|
|
7801
|
+
"model": {
|
|
7802
|
+
"type": "string"
|
|
7803
|
+
},
|
|
7804
|
+
"reasoning": {
|
|
7805
|
+
"anyOf": [
|
|
7806
|
+
{
|
|
7807
|
+
"type": "string",
|
|
7808
|
+
"enum": [
|
|
7809
|
+
"off",
|
|
7810
|
+
"minimal",
|
|
7811
|
+
"low",
|
|
7812
|
+
"medium",
|
|
7813
|
+
"high",
|
|
7814
|
+
"xhigh",
|
|
7815
|
+
"max",
|
|
7816
|
+
"auto"
|
|
7817
|
+
]
|
|
7818
|
+
},
|
|
7819
|
+
{
|
|
7820
|
+
"type": "string"
|
|
7821
|
+
}
|
|
7822
|
+
]
|
|
7823
|
+
},
|
|
7824
|
+
"variant": {
|
|
7825
|
+
"type": "string"
|
|
7826
|
+
}
|
|
7827
|
+
},
|
|
7828
|
+
"additionalProperties": false
|
|
7829
|
+
}
|
|
7830
|
+
},
|
|
7831
|
+
"additionalProperties": false
|
|
7832
|
+
}
|
|
7833
|
+
},
|
|
7834
|
+
"additionalProperties": {
|
|
7835
|
+
"type": "object",
|
|
7836
|
+
"properties": {
|
|
7837
|
+
"model": {
|
|
7838
|
+
"type": "string"
|
|
7839
|
+
},
|
|
7840
|
+
"models": {
|
|
7841
|
+
"type": "array",
|
|
7842
|
+
"items": {
|
|
7843
|
+
"anyOf": [
|
|
7844
|
+
{
|
|
7845
|
+
"type": "string"
|
|
7846
|
+
},
|
|
7847
|
+
{
|
|
7848
|
+
"type": "object",
|
|
7849
|
+
"properties": {
|
|
7850
|
+
"model": {
|
|
7851
|
+
"type": "string"
|
|
7852
|
+
},
|
|
7853
|
+
"reasoning": {
|
|
7854
|
+
"anyOf": [
|
|
7855
|
+
{
|
|
7856
|
+
"type": "string",
|
|
7857
|
+
"enum": [
|
|
7858
|
+
"off",
|
|
7859
|
+
"minimal",
|
|
7860
|
+
"low",
|
|
7861
|
+
"medium",
|
|
7862
|
+
"high",
|
|
7863
|
+
"xhigh",
|
|
7864
|
+
"max",
|
|
7865
|
+
"auto"
|
|
7866
|
+
]
|
|
7867
|
+
},
|
|
7868
|
+
{
|
|
7869
|
+
"type": "string"
|
|
7870
|
+
}
|
|
7871
|
+
]
|
|
7872
|
+
},
|
|
7873
|
+
"variant": {
|
|
7874
|
+
"type": "string"
|
|
7875
|
+
},
|
|
7876
|
+
"reasoningEffort": {
|
|
7877
|
+
"type": "string",
|
|
7878
|
+
"enum": [
|
|
7879
|
+
"none",
|
|
7880
|
+
"minimal",
|
|
7881
|
+
"low",
|
|
7882
|
+
"medium",
|
|
7883
|
+
"high",
|
|
7884
|
+
"xhigh",
|
|
7885
|
+
"max"
|
|
7886
|
+
]
|
|
7887
|
+
},
|
|
7888
|
+
"temperature": {
|
|
7889
|
+
"type": "number",
|
|
7890
|
+
"minimum": 0,
|
|
7891
|
+
"maximum": 2
|
|
7892
|
+
},
|
|
7893
|
+
"top_p": {
|
|
7894
|
+
"type": "number",
|
|
7895
|
+
"minimum": 0,
|
|
7896
|
+
"maximum": 1
|
|
7897
|
+
},
|
|
7898
|
+
"maxTokens": {
|
|
7899
|
+
"type": "number"
|
|
7900
|
+
},
|
|
7901
|
+
"thinking": {
|
|
7902
|
+
"type": "object",
|
|
7903
|
+
"properties": {
|
|
7904
|
+
"type": {
|
|
7905
|
+
"type": "string",
|
|
7906
|
+
"enum": [
|
|
7907
|
+
"enabled",
|
|
7908
|
+
"disabled"
|
|
7909
|
+
]
|
|
7910
|
+
},
|
|
7911
|
+
"budgetTokens": {
|
|
7912
|
+
"type": "number"
|
|
7913
|
+
}
|
|
7914
|
+
},
|
|
7915
|
+
"required": [
|
|
7916
|
+
"type"
|
|
7917
|
+
],
|
|
7918
|
+
"additionalProperties": false
|
|
7919
|
+
}
|
|
7920
|
+
},
|
|
7921
|
+
"required": [
|
|
7922
|
+
"model"
|
|
7923
|
+
],
|
|
7924
|
+
"additionalProperties": false
|
|
7925
|
+
}
|
|
5151
7926
|
]
|
|
5152
|
-
},
|
|
5153
|
-
"providerOptions": {
|
|
5154
|
-
"type": "object",
|
|
5155
|
-
"propertyNames": {
|
|
5156
|
-
"type": "string"
|
|
5157
|
-
},
|
|
5158
|
-
"additionalProperties": {}
|
|
5159
|
-
},
|
|
5160
|
-
"ultrawork": {
|
|
5161
|
-
"type": "object",
|
|
5162
|
-
"properties": {
|
|
5163
|
-
"model": {
|
|
5164
|
-
"type": "string"
|
|
5165
|
-
},
|
|
5166
|
-
"variant": {
|
|
5167
|
-
"type": "string"
|
|
5168
|
-
}
|
|
5169
|
-
},
|
|
5170
|
-
"additionalProperties": false
|
|
5171
|
-
},
|
|
5172
|
-
"compaction": {
|
|
5173
|
-
"type": "object",
|
|
5174
|
-
"properties": {
|
|
5175
|
-
"model": {
|
|
5176
|
-
"type": "string"
|
|
5177
|
-
},
|
|
5178
|
-
"variant": {
|
|
5179
|
-
"type": "string"
|
|
5180
|
-
}
|
|
5181
|
-
},
|
|
5182
|
-
"additionalProperties": false
|
|
5183
7927
|
}
|
|
5184
7928
|
},
|
|
5185
|
-
"additionalProperties": false
|
|
5186
|
-
}
|
|
5187
|
-
},
|
|
5188
|
-
"additionalProperties": {
|
|
5189
|
-
"type": "object",
|
|
5190
|
-
"properties": {
|
|
5191
|
-
"model": {
|
|
5192
|
-
"type": "string"
|
|
5193
|
-
},
|
|
5194
7929
|
"fallback_models": {
|
|
5195
7930
|
"anyOf": [
|
|
5196
7931
|
{
|
|
@@ -5210,6 +7945,26 @@
|
|
|
5210
7945
|
"model": {
|
|
5211
7946
|
"type": "string"
|
|
5212
7947
|
},
|
|
7948
|
+
"reasoning": {
|
|
7949
|
+
"anyOf": [
|
|
7950
|
+
{
|
|
7951
|
+
"type": "string",
|
|
7952
|
+
"enum": [
|
|
7953
|
+
"off",
|
|
7954
|
+
"minimal",
|
|
7955
|
+
"low",
|
|
7956
|
+
"medium",
|
|
7957
|
+
"high",
|
|
7958
|
+
"xhigh",
|
|
7959
|
+
"max",
|
|
7960
|
+
"auto"
|
|
7961
|
+
]
|
|
7962
|
+
},
|
|
7963
|
+
{
|
|
7964
|
+
"type": "string"
|
|
7965
|
+
}
|
|
7966
|
+
]
|
|
7967
|
+
},
|
|
5213
7968
|
"variant": {
|
|
5214
7969
|
"type": "string"
|
|
5215
7970
|
},
|
|
@@ -5277,6 +8032,26 @@
|
|
|
5277
8032
|
"model": {
|
|
5278
8033
|
"type": "string"
|
|
5279
8034
|
},
|
|
8035
|
+
"reasoning": {
|
|
8036
|
+
"anyOf": [
|
|
8037
|
+
{
|
|
8038
|
+
"type": "string",
|
|
8039
|
+
"enum": [
|
|
8040
|
+
"off",
|
|
8041
|
+
"minimal",
|
|
8042
|
+
"low",
|
|
8043
|
+
"medium",
|
|
8044
|
+
"high",
|
|
8045
|
+
"xhigh",
|
|
8046
|
+
"max",
|
|
8047
|
+
"auto"
|
|
8048
|
+
]
|
|
8049
|
+
},
|
|
8050
|
+
{
|
|
8051
|
+
"type": "string"
|
|
8052
|
+
}
|
|
8053
|
+
]
|
|
8054
|
+
},
|
|
5280
8055
|
"variant": {
|
|
5281
8056
|
"type": "string"
|
|
5282
8057
|
},
|
|
@@ -5335,6 +8110,26 @@
|
|
|
5335
8110
|
}
|
|
5336
8111
|
]
|
|
5337
8112
|
},
|
|
8113
|
+
"reasoning": {
|
|
8114
|
+
"anyOf": [
|
|
8115
|
+
{
|
|
8116
|
+
"type": "string",
|
|
8117
|
+
"enum": [
|
|
8118
|
+
"off",
|
|
8119
|
+
"minimal",
|
|
8120
|
+
"low",
|
|
8121
|
+
"medium",
|
|
8122
|
+
"high",
|
|
8123
|
+
"xhigh",
|
|
8124
|
+
"max",
|
|
8125
|
+
"auto"
|
|
8126
|
+
]
|
|
8127
|
+
},
|
|
8128
|
+
{
|
|
8129
|
+
"type": "string"
|
|
8130
|
+
}
|
|
8131
|
+
]
|
|
8132
|
+
},
|
|
5338
8133
|
"variant": {
|
|
5339
8134
|
"type": "string"
|
|
5340
8135
|
},
|
|
@@ -5527,6 +8322,26 @@
|
|
|
5527
8322
|
"model": {
|
|
5528
8323
|
"type": "string"
|
|
5529
8324
|
},
|
|
8325
|
+
"reasoning": {
|
|
8326
|
+
"anyOf": [
|
|
8327
|
+
{
|
|
8328
|
+
"type": "string",
|
|
8329
|
+
"enum": [
|
|
8330
|
+
"off",
|
|
8331
|
+
"minimal",
|
|
8332
|
+
"low",
|
|
8333
|
+
"medium",
|
|
8334
|
+
"high",
|
|
8335
|
+
"xhigh",
|
|
8336
|
+
"max",
|
|
8337
|
+
"auto"
|
|
8338
|
+
]
|
|
8339
|
+
},
|
|
8340
|
+
{
|
|
8341
|
+
"type": "string"
|
|
8342
|
+
}
|
|
8343
|
+
]
|
|
8344
|
+
},
|
|
5530
8345
|
"variant": {
|
|
5531
8346
|
"type": "string"
|
|
5532
8347
|
}
|
|
@@ -5539,6 +8354,26 @@
|
|
|
5539
8354
|
"model": {
|
|
5540
8355
|
"type": "string"
|
|
5541
8356
|
},
|
|
8357
|
+
"reasoning": {
|
|
8358
|
+
"anyOf": [
|
|
8359
|
+
{
|
|
8360
|
+
"type": "string",
|
|
8361
|
+
"enum": [
|
|
8362
|
+
"off",
|
|
8363
|
+
"minimal",
|
|
8364
|
+
"low",
|
|
8365
|
+
"medium",
|
|
8366
|
+
"high",
|
|
8367
|
+
"xhigh",
|
|
8368
|
+
"max",
|
|
8369
|
+
"auto"
|
|
8370
|
+
]
|
|
8371
|
+
},
|
|
8372
|
+
{
|
|
8373
|
+
"type": "string"
|
|
8374
|
+
}
|
|
8375
|
+
]
|
|
8376
|
+
},
|
|
5542
8377
|
"variant": {
|
|
5543
8378
|
"type": "string"
|
|
5544
8379
|
}
|
|
@@ -5563,6 +8398,95 @@
|
|
|
5563
8398
|
"model": {
|
|
5564
8399
|
"type": "string"
|
|
5565
8400
|
},
|
|
8401
|
+
"models": {
|
|
8402
|
+
"type": "array",
|
|
8403
|
+
"items": {
|
|
8404
|
+
"anyOf": [
|
|
8405
|
+
{
|
|
8406
|
+
"type": "string"
|
|
8407
|
+
},
|
|
8408
|
+
{
|
|
8409
|
+
"type": "object",
|
|
8410
|
+
"properties": {
|
|
8411
|
+
"model": {
|
|
8412
|
+
"type": "string"
|
|
8413
|
+
},
|
|
8414
|
+
"reasoning": {
|
|
8415
|
+
"anyOf": [
|
|
8416
|
+
{
|
|
8417
|
+
"type": "string",
|
|
8418
|
+
"enum": [
|
|
8419
|
+
"off",
|
|
8420
|
+
"minimal",
|
|
8421
|
+
"low",
|
|
8422
|
+
"medium",
|
|
8423
|
+
"high",
|
|
8424
|
+
"xhigh",
|
|
8425
|
+
"max",
|
|
8426
|
+
"auto"
|
|
8427
|
+
]
|
|
8428
|
+
},
|
|
8429
|
+
{
|
|
8430
|
+
"type": "string"
|
|
8431
|
+
}
|
|
8432
|
+
]
|
|
8433
|
+
},
|
|
8434
|
+
"variant": {
|
|
8435
|
+
"type": "string"
|
|
8436
|
+
},
|
|
8437
|
+
"reasoningEffort": {
|
|
8438
|
+
"type": "string",
|
|
8439
|
+
"enum": [
|
|
8440
|
+
"none",
|
|
8441
|
+
"minimal",
|
|
8442
|
+
"low",
|
|
8443
|
+
"medium",
|
|
8444
|
+
"high",
|
|
8445
|
+
"xhigh",
|
|
8446
|
+
"max"
|
|
8447
|
+
]
|
|
8448
|
+
},
|
|
8449
|
+
"temperature": {
|
|
8450
|
+
"type": "number",
|
|
8451
|
+
"minimum": 0,
|
|
8452
|
+
"maximum": 2
|
|
8453
|
+
},
|
|
8454
|
+
"top_p": {
|
|
8455
|
+
"type": "number",
|
|
8456
|
+
"minimum": 0,
|
|
8457
|
+
"maximum": 1
|
|
8458
|
+
},
|
|
8459
|
+
"maxTokens": {
|
|
8460
|
+
"type": "number"
|
|
8461
|
+
},
|
|
8462
|
+
"thinking": {
|
|
8463
|
+
"type": "object",
|
|
8464
|
+
"properties": {
|
|
8465
|
+
"type": {
|
|
8466
|
+
"type": "string",
|
|
8467
|
+
"enum": [
|
|
8468
|
+
"enabled",
|
|
8469
|
+
"disabled"
|
|
8470
|
+
]
|
|
8471
|
+
},
|
|
8472
|
+
"budgetTokens": {
|
|
8473
|
+
"type": "number"
|
|
8474
|
+
}
|
|
8475
|
+
},
|
|
8476
|
+
"required": [
|
|
8477
|
+
"type"
|
|
8478
|
+
],
|
|
8479
|
+
"additionalProperties": false
|
|
8480
|
+
}
|
|
8481
|
+
},
|
|
8482
|
+
"required": [
|
|
8483
|
+
"model"
|
|
8484
|
+
],
|
|
8485
|
+
"additionalProperties": false
|
|
8486
|
+
}
|
|
8487
|
+
]
|
|
8488
|
+
}
|
|
8489
|
+
},
|
|
5566
8490
|
"fallback_models": {
|
|
5567
8491
|
"anyOf": [
|
|
5568
8492
|
{
|
|
@@ -5582,6 +8506,26 @@
|
|
|
5582
8506
|
"model": {
|
|
5583
8507
|
"type": "string"
|
|
5584
8508
|
},
|
|
8509
|
+
"reasoning": {
|
|
8510
|
+
"anyOf": [
|
|
8511
|
+
{
|
|
8512
|
+
"type": "string",
|
|
8513
|
+
"enum": [
|
|
8514
|
+
"off",
|
|
8515
|
+
"minimal",
|
|
8516
|
+
"low",
|
|
8517
|
+
"medium",
|
|
8518
|
+
"high",
|
|
8519
|
+
"xhigh",
|
|
8520
|
+
"max",
|
|
8521
|
+
"auto"
|
|
8522
|
+
]
|
|
8523
|
+
},
|
|
8524
|
+
{
|
|
8525
|
+
"type": "string"
|
|
8526
|
+
}
|
|
8527
|
+
]
|
|
8528
|
+
},
|
|
5585
8529
|
"variant": {
|
|
5586
8530
|
"type": "string"
|
|
5587
8531
|
},
|
|
@@ -5649,6 +8593,26 @@
|
|
|
5649
8593
|
"model": {
|
|
5650
8594
|
"type": "string"
|
|
5651
8595
|
},
|
|
8596
|
+
"reasoning": {
|
|
8597
|
+
"anyOf": [
|
|
8598
|
+
{
|
|
8599
|
+
"type": "string",
|
|
8600
|
+
"enum": [
|
|
8601
|
+
"off",
|
|
8602
|
+
"minimal",
|
|
8603
|
+
"low",
|
|
8604
|
+
"medium",
|
|
8605
|
+
"high",
|
|
8606
|
+
"xhigh",
|
|
8607
|
+
"max",
|
|
8608
|
+
"auto"
|
|
8609
|
+
]
|
|
8610
|
+
},
|
|
8611
|
+
{
|
|
8612
|
+
"type": "string"
|
|
8613
|
+
}
|
|
8614
|
+
]
|
|
8615
|
+
},
|
|
5652
8616
|
"variant": {
|
|
5653
8617
|
"type": "string"
|
|
5654
8618
|
},
|
|
@@ -5707,6 +8671,26 @@
|
|
|
5707
8671
|
}
|
|
5708
8672
|
]
|
|
5709
8673
|
},
|
|
8674
|
+
"reasoning": {
|
|
8675
|
+
"anyOf": [
|
|
8676
|
+
{
|
|
8677
|
+
"type": "string",
|
|
8678
|
+
"enum": [
|
|
8679
|
+
"off",
|
|
8680
|
+
"minimal",
|
|
8681
|
+
"low",
|
|
8682
|
+
"medium",
|
|
8683
|
+
"high",
|
|
8684
|
+
"xhigh",
|
|
8685
|
+
"max",
|
|
8686
|
+
"auto"
|
|
8687
|
+
]
|
|
8688
|
+
},
|
|
8689
|
+
{
|
|
8690
|
+
"type": "string"
|
|
8691
|
+
}
|
|
8692
|
+
]
|
|
8693
|
+
},
|
|
5710
8694
|
"variant": {
|
|
5711
8695
|
"type": "string"
|
|
5712
8696
|
},
|
|
@@ -5720,6 +8704,18 @@
|
|
|
5720
8704
|
"minimum": 0,
|
|
5721
8705
|
"maximum": 1
|
|
5722
8706
|
},
|
|
8707
|
+
"max_tokens": {
|
|
8708
|
+
"type": "integer",
|
|
8709
|
+
"exclusiveMinimum": 0,
|
|
8710
|
+
"maximum": 9007199254740991
|
|
8711
|
+
},
|
|
8712
|
+
"provider_options": {
|
|
8713
|
+
"type": "object",
|
|
8714
|
+
"propertyNames": {
|
|
8715
|
+
"type": "string"
|
|
8716
|
+
},
|
|
8717
|
+
"additionalProperties": {}
|
|
8718
|
+
},
|
|
5723
8719
|
"maxTokens": {
|
|
5724
8720
|
"type": "number"
|
|
5725
8721
|
},
|
|
@@ -5784,6 +8780,9 @@
|
|
|
5784
8780
|
},
|
|
5785
8781
|
"disable": {
|
|
5786
8782
|
"type": "boolean"
|
|
8783
|
+
},
|
|
8784
|
+
"warn_unavailable": {
|
|
8785
|
+
"type": "boolean"
|
|
5787
8786
|
}
|
|
5788
8787
|
},
|
|
5789
8788
|
"additionalProperties": false
|