oh-my-opencode 4.19.4 → 5.0.0-beta.2
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/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/cli/index.js +1452 -703
- package/dist/cli-node/index.js +1452 -703
- package/dist/config/schema/agent-overrides.d.ts +528 -0
- package/dist/config/schema/oh-my-opencode-config.d.ts +495 -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/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 +2776 -2240
- package/dist/mcp/lsp.d.ts +1 -0
- package/dist/oh-my-opencode.schema.json +1466 -131
- 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/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 +1 -1
- 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 +15 -10
- package/dist/tui.js +307 -28
- package/docs/reference/web-terminal-visual-qa.md +1 -1
- package/package.json +27 -19
- 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 +268 -92
- 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 +106 -6
- package/packages/omo-codex/plugin/components/codegraph/dist/serve.js +106 -6
- package/packages/omo-codex/plugin/components/codegraph/package.json +1 -1
- 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/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/rules/package.json +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 +1 -1
- 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 +4 -4
- 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/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 +1 -1
- 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 +15 -10
- 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 +4 -4
- 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 +115 -61
- 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/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 +1 -1
- 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 +15 -10
- 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
|
{
|
|
@@ -568,6 +657,95 @@
|
|
|
568
657
|
"model": {
|
|
569
658
|
"type": "string"
|
|
570
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
|
+
},
|
|
571
749
|
"fallback_models": {
|
|
572
750
|
"anyOf": [
|
|
573
751
|
{
|
|
@@ -1031,20 +1209,14 @@
|
|
|
1031
1209
|
"model": {
|
|
1032
1210
|
"type": "string"
|
|
1033
1211
|
},
|
|
1034
|
-
"
|
|
1035
|
-
"
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
{
|
|
1040
|
-
"type": "array",
|
|
1041
|
-
"items": {
|
|
1212
|
+
"models": {
|
|
1213
|
+
"type": "array",
|
|
1214
|
+
"items": {
|
|
1215
|
+
"anyOf": [
|
|
1216
|
+
{
|
|
1042
1217
|
"type": "string"
|
|
1043
|
-
}
|
|
1044
|
-
|
|
1045
|
-
{
|
|
1046
|
-
"type": "array",
|
|
1047
|
-
"items": {
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1048
1220
|
"type": "object",
|
|
1049
1221
|
"properties": {
|
|
1050
1222
|
"model": {
|
|
@@ -1123,60 +1295,155 @@
|
|
|
1123
1295
|
],
|
|
1124
1296
|
"additionalProperties": false
|
|
1125
1297
|
}
|
|
1298
|
+
]
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
1301
|
+
"fallback_models": {
|
|
1302
|
+
"anyOf": [
|
|
1303
|
+
{
|
|
1304
|
+
"type": "string"
|
|
1126
1305
|
},
|
|
1127
1306
|
{
|
|
1128
1307
|
"type": "array",
|
|
1129
1308
|
"items": {
|
|
1130
|
-
"
|
|
1131
|
-
|
|
1309
|
+
"type": "string"
|
|
1310
|
+
}
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"type": "array",
|
|
1314
|
+
"items": {
|
|
1315
|
+
"type": "object",
|
|
1316
|
+
"properties": {
|
|
1317
|
+
"model": {
|
|
1132
1318
|
"type": "string"
|
|
1133
1319
|
},
|
|
1134
|
-
{
|
|
1135
|
-
"
|
|
1136
|
-
|
|
1137
|
-
"model": {
|
|
1138
|
-
"type": "string"
|
|
1139
|
-
},
|
|
1140
|
-
"reasoning": {
|
|
1141
|
-
"anyOf": [
|
|
1142
|
-
{
|
|
1143
|
-
"type": "string",
|
|
1144
|
-
"enum": [
|
|
1145
|
-
"off",
|
|
1146
|
-
"minimal",
|
|
1147
|
-
"low",
|
|
1148
|
-
"medium",
|
|
1149
|
-
"high",
|
|
1150
|
-
"xhigh",
|
|
1151
|
-
"max",
|
|
1152
|
-
"auto"
|
|
1153
|
-
]
|
|
1154
|
-
},
|
|
1155
|
-
{
|
|
1156
|
-
"type": "string"
|
|
1157
|
-
}
|
|
1158
|
-
]
|
|
1159
|
-
},
|
|
1160
|
-
"variant": {
|
|
1161
|
-
"type": "string"
|
|
1162
|
-
},
|
|
1163
|
-
"reasoningEffort": {
|
|
1320
|
+
"reasoning": {
|
|
1321
|
+
"anyOf": [
|
|
1322
|
+
{
|
|
1164
1323
|
"type": "string",
|
|
1165
1324
|
"enum": [
|
|
1166
|
-
"
|
|
1325
|
+
"off",
|
|
1167
1326
|
"minimal",
|
|
1168
1327
|
"low",
|
|
1169
1328
|
"medium",
|
|
1170
1329
|
"high",
|
|
1171
1330
|
"xhigh",
|
|
1172
|
-
"max"
|
|
1331
|
+
"max",
|
|
1332
|
+
"auto"
|
|
1173
1333
|
]
|
|
1174
1334
|
},
|
|
1175
|
-
|
|
1176
|
-
"type": "
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1335
|
+
{
|
|
1336
|
+
"type": "string"
|
|
1337
|
+
}
|
|
1338
|
+
]
|
|
1339
|
+
},
|
|
1340
|
+
"variant": {
|
|
1341
|
+
"type": "string"
|
|
1342
|
+
},
|
|
1343
|
+
"reasoningEffort": {
|
|
1344
|
+
"type": "string",
|
|
1345
|
+
"enum": [
|
|
1346
|
+
"none",
|
|
1347
|
+
"minimal",
|
|
1348
|
+
"low",
|
|
1349
|
+
"medium",
|
|
1350
|
+
"high",
|
|
1351
|
+
"xhigh",
|
|
1352
|
+
"max"
|
|
1353
|
+
]
|
|
1354
|
+
},
|
|
1355
|
+
"temperature": {
|
|
1356
|
+
"type": "number",
|
|
1357
|
+
"minimum": 0,
|
|
1358
|
+
"maximum": 2
|
|
1359
|
+
},
|
|
1360
|
+
"top_p": {
|
|
1361
|
+
"type": "number",
|
|
1362
|
+
"minimum": 0,
|
|
1363
|
+
"maximum": 1
|
|
1364
|
+
},
|
|
1365
|
+
"maxTokens": {
|
|
1366
|
+
"type": "number"
|
|
1367
|
+
},
|
|
1368
|
+
"thinking": {
|
|
1369
|
+
"type": "object",
|
|
1370
|
+
"properties": {
|
|
1371
|
+
"type": {
|
|
1372
|
+
"type": "string",
|
|
1373
|
+
"enum": [
|
|
1374
|
+
"enabled",
|
|
1375
|
+
"disabled"
|
|
1376
|
+
]
|
|
1377
|
+
},
|
|
1378
|
+
"budgetTokens": {
|
|
1379
|
+
"type": "number"
|
|
1380
|
+
}
|
|
1381
|
+
},
|
|
1382
|
+
"required": [
|
|
1383
|
+
"type"
|
|
1384
|
+
],
|
|
1385
|
+
"additionalProperties": false
|
|
1386
|
+
}
|
|
1387
|
+
},
|
|
1388
|
+
"required": [
|
|
1389
|
+
"model"
|
|
1390
|
+
],
|
|
1391
|
+
"additionalProperties": false
|
|
1392
|
+
}
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
"type": "array",
|
|
1396
|
+
"items": {
|
|
1397
|
+
"anyOf": [
|
|
1398
|
+
{
|
|
1399
|
+
"type": "string"
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
"type": "object",
|
|
1403
|
+
"properties": {
|
|
1404
|
+
"model": {
|
|
1405
|
+
"type": "string"
|
|
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
|
+
},
|
|
1427
|
+
"variant": {
|
|
1428
|
+
"type": "string"
|
|
1429
|
+
},
|
|
1430
|
+
"reasoningEffort": {
|
|
1431
|
+
"type": "string",
|
|
1432
|
+
"enum": [
|
|
1433
|
+
"none",
|
|
1434
|
+
"minimal",
|
|
1435
|
+
"low",
|
|
1436
|
+
"medium",
|
|
1437
|
+
"high",
|
|
1438
|
+
"xhigh",
|
|
1439
|
+
"max"
|
|
1440
|
+
]
|
|
1441
|
+
},
|
|
1442
|
+
"temperature": {
|
|
1443
|
+
"type": "number",
|
|
1444
|
+
"minimum": 0,
|
|
1445
|
+
"maximum": 2
|
|
1446
|
+
},
|
|
1180
1447
|
"top_p": {
|
|
1181
1448
|
"type": "number",
|
|
1182
1449
|
"minimum": 0,
|
|
@@ -1494,6 +1761,95 @@
|
|
|
1494
1761
|
"model": {
|
|
1495
1762
|
"type": "string"
|
|
1496
1763
|
},
|
|
1764
|
+
"models": {
|
|
1765
|
+
"type": "array",
|
|
1766
|
+
"items": {
|
|
1767
|
+
"anyOf": [
|
|
1768
|
+
{
|
|
1769
|
+
"type": "string"
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
"type": "object",
|
|
1773
|
+
"properties": {
|
|
1774
|
+
"model": {
|
|
1775
|
+
"type": "string"
|
|
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
|
+
},
|
|
1797
|
+
"variant": {
|
|
1798
|
+
"type": "string"
|
|
1799
|
+
},
|
|
1800
|
+
"reasoningEffort": {
|
|
1801
|
+
"type": "string",
|
|
1802
|
+
"enum": [
|
|
1803
|
+
"none",
|
|
1804
|
+
"minimal",
|
|
1805
|
+
"low",
|
|
1806
|
+
"medium",
|
|
1807
|
+
"high",
|
|
1808
|
+
"xhigh",
|
|
1809
|
+
"max"
|
|
1810
|
+
]
|
|
1811
|
+
},
|
|
1812
|
+
"temperature": {
|
|
1813
|
+
"type": "number",
|
|
1814
|
+
"minimum": 0,
|
|
1815
|
+
"maximum": 2
|
|
1816
|
+
},
|
|
1817
|
+
"top_p": {
|
|
1818
|
+
"type": "number",
|
|
1819
|
+
"minimum": 0,
|
|
1820
|
+
"maximum": 1
|
|
1821
|
+
},
|
|
1822
|
+
"maxTokens": {
|
|
1823
|
+
"type": "number"
|
|
1824
|
+
},
|
|
1825
|
+
"thinking": {
|
|
1826
|
+
"type": "object",
|
|
1827
|
+
"properties": {
|
|
1828
|
+
"type": {
|
|
1829
|
+
"type": "string",
|
|
1830
|
+
"enum": [
|
|
1831
|
+
"enabled",
|
|
1832
|
+
"disabled"
|
|
1833
|
+
]
|
|
1834
|
+
},
|
|
1835
|
+
"budgetTokens": {
|
|
1836
|
+
"type": "number"
|
|
1837
|
+
}
|
|
1838
|
+
},
|
|
1839
|
+
"required": [
|
|
1840
|
+
"type"
|
|
1841
|
+
],
|
|
1842
|
+
"additionalProperties": false
|
|
1843
|
+
}
|
|
1844
|
+
},
|
|
1845
|
+
"required": [
|
|
1846
|
+
"model"
|
|
1847
|
+
],
|
|
1848
|
+
"additionalProperties": false
|
|
1849
|
+
}
|
|
1850
|
+
]
|
|
1851
|
+
}
|
|
1852
|
+
},
|
|
1497
1853
|
"fallback_models": {
|
|
1498
1854
|
"anyOf": [
|
|
1499
1855
|
{
|
|
@@ -1937,28 +2293,117 @@
|
|
|
1937
2293
|
"auto"
|
|
1938
2294
|
]
|
|
1939
2295
|
},
|
|
1940
|
-
{
|
|
1941
|
-
"type": "string"
|
|
1942
|
-
}
|
|
1943
|
-
]
|
|
1944
|
-
},
|
|
1945
|
-
"variant": {
|
|
1946
|
-
"type": "string"
|
|
1947
|
-
}
|
|
1948
|
-
},
|
|
1949
|
-
"additionalProperties": false
|
|
1950
|
-
},
|
|
1951
|
-
"allow_non_gpt_model": {
|
|
1952
|
-
"type": "boolean"
|
|
1953
|
-
}
|
|
1954
|
-
},
|
|
1955
|
-
"additionalProperties": false
|
|
1956
|
-
},
|
|
1957
|
-
"sisyphus-junior": {
|
|
1958
|
-
"type": "object",
|
|
1959
|
-
"properties": {
|
|
1960
|
-
"model": {
|
|
1961
|
-
"type": "string"
|
|
2296
|
+
{
|
|
2297
|
+
"type": "string"
|
|
2298
|
+
}
|
|
2299
|
+
]
|
|
2300
|
+
},
|
|
2301
|
+
"variant": {
|
|
2302
|
+
"type": "string"
|
|
2303
|
+
}
|
|
2304
|
+
},
|
|
2305
|
+
"additionalProperties": false
|
|
2306
|
+
},
|
|
2307
|
+
"allow_non_gpt_model": {
|
|
2308
|
+
"type": "boolean"
|
|
2309
|
+
}
|
|
2310
|
+
},
|
|
2311
|
+
"additionalProperties": false
|
|
2312
|
+
},
|
|
2313
|
+
"sisyphus-junior": {
|
|
2314
|
+
"type": "object",
|
|
2315
|
+
"properties": {
|
|
2316
|
+
"model": {
|
|
2317
|
+
"type": "string"
|
|
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
|
+
}
|
|
1962
2407
|
},
|
|
1963
2408
|
"fallback_models": {
|
|
1964
2409
|
"anyOf": [
|
|
@@ -2423,6 +2868,95 @@
|
|
|
2423
2868
|
"model": {
|
|
2424
2869
|
"type": "string"
|
|
2425
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
|
+
},
|
|
2426
2960
|
"fallback_models": {
|
|
2427
2961
|
"anyOf": [
|
|
2428
2962
|
{
|
|
@@ -2886,6 +3420,95 @@
|
|
|
2886
3420
|
"model": {
|
|
2887
3421
|
"type": "string"
|
|
2888
3422
|
},
|
|
3423
|
+
"models": {
|
|
3424
|
+
"type": "array",
|
|
3425
|
+
"items": {
|
|
3426
|
+
"anyOf": [
|
|
3427
|
+
{
|
|
3428
|
+
"type": "string"
|
|
3429
|
+
},
|
|
3430
|
+
{
|
|
3431
|
+
"type": "object",
|
|
3432
|
+
"properties": {
|
|
3433
|
+
"model": {
|
|
3434
|
+
"type": "string"
|
|
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
|
+
},
|
|
3456
|
+
"variant": {
|
|
3457
|
+
"type": "string"
|
|
3458
|
+
},
|
|
3459
|
+
"reasoningEffort": {
|
|
3460
|
+
"type": "string",
|
|
3461
|
+
"enum": [
|
|
3462
|
+
"none",
|
|
3463
|
+
"minimal",
|
|
3464
|
+
"low",
|
|
3465
|
+
"medium",
|
|
3466
|
+
"high",
|
|
3467
|
+
"xhigh",
|
|
3468
|
+
"max"
|
|
3469
|
+
]
|
|
3470
|
+
},
|
|
3471
|
+
"temperature": {
|
|
3472
|
+
"type": "number",
|
|
3473
|
+
"minimum": 0,
|
|
3474
|
+
"maximum": 2
|
|
3475
|
+
},
|
|
3476
|
+
"top_p": {
|
|
3477
|
+
"type": "number",
|
|
3478
|
+
"minimum": 0,
|
|
3479
|
+
"maximum": 1
|
|
3480
|
+
},
|
|
3481
|
+
"maxTokens": {
|
|
3482
|
+
"type": "number"
|
|
3483
|
+
},
|
|
3484
|
+
"thinking": {
|
|
3485
|
+
"type": "object",
|
|
3486
|
+
"properties": {
|
|
3487
|
+
"type": {
|
|
3488
|
+
"type": "string",
|
|
3489
|
+
"enum": [
|
|
3490
|
+
"enabled",
|
|
3491
|
+
"disabled"
|
|
3492
|
+
]
|
|
3493
|
+
},
|
|
3494
|
+
"budgetTokens": {
|
|
3495
|
+
"type": "number"
|
|
3496
|
+
}
|
|
3497
|
+
},
|
|
3498
|
+
"required": [
|
|
3499
|
+
"type"
|
|
3500
|
+
],
|
|
3501
|
+
"additionalProperties": false
|
|
3502
|
+
}
|
|
3503
|
+
},
|
|
3504
|
+
"required": [
|
|
3505
|
+
"model"
|
|
3506
|
+
],
|
|
3507
|
+
"additionalProperties": false
|
|
3508
|
+
}
|
|
3509
|
+
]
|
|
3510
|
+
}
|
|
3511
|
+
},
|
|
2889
3512
|
"fallback_models": {
|
|
2890
3513
|
"anyOf": [
|
|
2891
3514
|
{
|
|
@@ -3329,25 +3952,114 @@
|
|
|
3329
3952
|
"auto"
|
|
3330
3953
|
]
|
|
3331
3954
|
},
|
|
3332
|
-
{
|
|
3333
|
-
"type": "string"
|
|
3334
|
-
}
|
|
3335
|
-
]
|
|
3336
|
-
},
|
|
3337
|
-
"variant": {
|
|
3338
|
-
"type": "string"
|
|
3339
|
-
}
|
|
3340
|
-
},
|
|
3341
|
-
"additionalProperties": false
|
|
3342
|
-
}
|
|
3343
|
-
},
|
|
3344
|
-
"additionalProperties": false
|
|
3345
|
-
},
|
|
3346
|
-
"metis": {
|
|
3347
|
-
"type": "object",
|
|
3348
|
-
"properties": {
|
|
3349
|
-
"model": {
|
|
3350
|
-
"type": "string"
|
|
3955
|
+
{
|
|
3956
|
+
"type": "string"
|
|
3957
|
+
}
|
|
3958
|
+
]
|
|
3959
|
+
},
|
|
3960
|
+
"variant": {
|
|
3961
|
+
"type": "string"
|
|
3962
|
+
}
|
|
3963
|
+
},
|
|
3964
|
+
"additionalProperties": false
|
|
3965
|
+
}
|
|
3966
|
+
},
|
|
3967
|
+
"additionalProperties": false
|
|
3968
|
+
},
|
|
3969
|
+
"metis": {
|
|
3970
|
+
"type": "object",
|
|
3971
|
+
"properties": {
|
|
3972
|
+
"model": {
|
|
3973
|
+
"type": "string"
|
|
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
|
+
}
|
|
3351
4063
|
},
|
|
3352
4064
|
"fallback_models": {
|
|
3353
4065
|
"anyOf": [
|
|
@@ -3812,6 +4524,95 @@
|
|
|
3812
4524
|
"model": {
|
|
3813
4525
|
"type": "string"
|
|
3814
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
|
+
},
|
|
3815
4616
|
"fallback_models": {
|
|
3816
4617
|
"anyOf": [
|
|
3817
4618
|
{
|
|
@@ -4255,25 +5056,114 @@
|
|
|
4255
5056
|
"auto"
|
|
4256
5057
|
]
|
|
4257
5058
|
},
|
|
4258
|
-
{
|
|
4259
|
-
"type": "string"
|
|
4260
|
-
}
|
|
4261
|
-
]
|
|
4262
|
-
},
|
|
4263
|
-
"variant": {
|
|
4264
|
-
"type": "string"
|
|
4265
|
-
}
|
|
4266
|
-
},
|
|
4267
|
-
"additionalProperties": false
|
|
4268
|
-
}
|
|
4269
|
-
},
|
|
4270
|
-
"additionalProperties": false
|
|
4271
|
-
},
|
|
4272
|
-
"oracle": {
|
|
4273
|
-
"type": "object",
|
|
4274
|
-
"properties": {
|
|
4275
|
-
"model": {
|
|
4276
|
-
"type": "string"
|
|
5059
|
+
{
|
|
5060
|
+
"type": "string"
|
|
5061
|
+
}
|
|
5062
|
+
]
|
|
5063
|
+
},
|
|
5064
|
+
"variant": {
|
|
5065
|
+
"type": "string"
|
|
5066
|
+
}
|
|
5067
|
+
},
|
|
5068
|
+
"additionalProperties": false
|
|
5069
|
+
}
|
|
5070
|
+
},
|
|
5071
|
+
"additionalProperties": false
|
|
5072
|
+
},
|
|
5073
|
+
"oracle": {
|
|
5074
|
+
"type": "object",
|
|
5075
|
+
"properties": {
|
|
5076
|
+
"model": {
|
|
5077
|
+
"type": "string"
|
|
5078
|
+
},
|
|
5079
|
+
"models": {
|
|
5080
|
+
"type": "array",
|
|
5081
|
+
"items": {
|
|
5082
|
+
"anyOf": [
|
|
5083
|
+
{
|
|
5084
|
+
"type": "string"
|
|
5085
|
+
},
|
|
5086
|
+
{
|
|
5087
|
+
"type": "object",
|
|
5088
|
+
"properties": {
|
|
5089
|
+
"model": {
|
|
5090
|
+
"type": "string"
|
|
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
|
+
},
|
|
5112
|
+
"variant": {
|
|
5113
|
+
"type": "string"
|
|
5114
|
+
},
|
|
5115
|
+
"reasoningEffort": {
|
|
5116
|
+
"type": "string",
|
|
5117
|
+
"enum": [
|
|
5118
|
+
"none",
|
|
5119
|
+
"minimal",
|
|
5120
|
+
"low",
|
|
5121
|
+
"medium",
|
|
5122
|
+
"high",
|
|
5123
|
+
"xhigh",
|
|
5124
|
+
"max"
|
|
5125
|
+
]
|
|
5126
|
+
},
|
|
5127
|
+
"temperature": {
|
|
5128
|
+
"type": "number",
|
|
5129
|
+
"minimum": 0,
|
|
5130
|
+
"maximum": 2
|
|
5131
|
+
},
|
|
5132
|
+
"top_p": {
|
|
5133
|
+
"type": "number",
|
|
5134
|
+
"minimum": 0,
|
|
5135
|
+
"maximum": 1
|
|
5136
|
+
},
|
|
5137
|
+
"maxTokens": {
|
|
5138
|
+
"type": "number"
|
|
5139
|
+
},
|
|
5140
|
+
"thinking": {
|
|
5141
|
+
"type": "object",
|
|
5142
|
+
"properties": {
|
|
5143
|
+
"type": {
|
|
5144
|
+
"type": "string",
|
|
5145
|
+
"enum": [
|
|
5146
|
+
"enabled",
|
|
5147
|
+
"disabled"
|
|
5148
|
+
]
|
|
5149
|
+
},
|
|
5150
|
+
"budgetTokens": {
|
|
5151
|
+
"type": "number"
|
|
5152
|
+
}
|
|
5153
|
+
},
|
|
5154
|
+
"required": [
|
|
5155
|
+
"type"
|
|
5156
|
+
],
|
|
5157
|
+
"additionalProperties": false
|
|
5158
|
+
}
|
|
5159
|
+
},
|
|
5160
|
+
"required": [
|
|
5161
|
+
"model"
|
|
5162
|
+
],
|
|
5163
|
+
"additionalProperties": false
|
|
5164
|
+
}
|
|
5165
|
+
]
|
|
5166
|
+
}
|
|
4277
5167
|
},
|
|
4278
5168
|
"fallback_models": {
|
|
4279
5169
|
"anyOf": [
|
|
@@ -4738,6 +5628,95 @@
|
|
|
4738
5628
|
"model": {
|
|
4739
5629
|
"type": "string"
|
|
4740
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
|
+
},
|
|
4741
5720
|
"fallback_models": {
|
|
4742
5721
|
"anyOf": [
|
|
4743
5722
|
{
|
|
@@ -5201,6 +6180,95 @@
|
|
|
5201
6180
|
"model": {
|
|
5202
6181
|
"type": "string"
|
|
5203
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
|
+
},
|
|
5204
6272
|
"fallback_models": {
|
|
5205
6273
|
"anyOf": [
|
|
5206
6274
|
{
|
|
@@ -5644,25 +6712,114 @@
|
|
|
5644
6712
|
"auto"
|
|
5645
6713
|
]
|
|
5646
6714
|
},
|
|
5647
|
-
{
|
|
5648
|
-
"type": "string"
|
|
5649
|
-
}
|
|
5650
|
-
]
|
|
5651
|
-
},
|
|
5652
|
-
"variant": {
|
|
5653
|
-
"type": "string"
|
|
5654
|
-
}
|
|
5655
|
-
},
|
|
5656
|
-
"additionalProperties": false
|
|
5657
|
-
}
|
|
5658
|
-
},
|
|
5659
|
-
"additionalProperties": false
|
|
5660
|
-
},
|
|
5661
|
-
"multimodal-looker": {
|
|
5662
|
-
"type": "object",
|
|
5663
|
-
"properties": {
|
|
5664
|
-
"model": {
|
|
5665
|
-
"type": "string"
|
|
6715
|
+
{
|
|
6716
|
+
"type": "string"
|
|
6717
|
+
}
|
|
6718
|
+
]
|
|
6719
|
+
},
|
|
6720
|
+
"variant": {
|
|
6721
|
+
"type": "string"
|
|
6722
|
+
}
|
|
6723
|
+
},
|
|
6724
|
+
"additionalProperties": false
|
|
6725
|
+
}
|
|
6726
|
+
},
|
|
6727
|
+
"additionalProperties": false
|
|
6728
|
+
},
|
|
6729
|
+
"multimodal-looker": {
|
|
6730
|
+
"type": "object",
|
|
6731
|
+
"properties": {
|
|
6732
|
+
"model": {
|
|
6733
|
+
"type": "string"
|
|
6734
|
+
},
|
|
6735
|
+
"models": {
|
|
6736
|
+
"type": "array",
|
|
6737
|
+
"items": {
|
|
6738
|
+
"anyOf": [
|
|
6739
|
+
{
|
|
6740
|
+
"type": "string"
|
|
6741
|
+
},
|
|
6742
|
+
{
|
|
6743
|
+
"type": "object",
|
|
6744
|
+
"properties": {
|
|
6745
|
+
"model": {
|
|
6746
|
+
"type": "string"
|
|
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
|
+
},
|
|
6768
|
+
"variant": {
|
|
6769
|
+
"type": "string"
|
|
6770
|
+
},
|
|
6771
|
+
"reasoningEffort": {
|
|
6772
|
+
"type": "string",
|
|
6773
|
+
"enum": [
|
|
6774
|
+
"none",
|
|
6775
|
+
"minimal",
|
|
6776
|
+
"low",
|
|
6777
|
+
"medium",
|
|
6778
|
+
"high",
|
|
6779
|
+
"xhigh",
|
|
6780
|
+
"max"
|
|
6781
|
+
]
|
|
6782
|
+
},
|
|
6783
|
+
"temperature": {
|
|
6784
|
+
"type": "number",
|
|
6785
|
+
"minimum": 0,
|
|
6786
|
+
"maximum": 2
|
|
6787
|
+
},
|
|
6788
|
+
"top_p": {
|
|
6789
|
+
"type": "number",
|
|
6790
|
+
"minimum": 0,
|
|
6791
|
+
"maximum": 1
|
|
6792
|
+
},
|
|
6793
|
+
"maxTokens": {
|
|
6794
|
+
"type": "number"
|
|
6795
|
+
},
|
|
6796
|
+
"thinking": {
|
|
6797
|
+
"type": "object",
|
|
6798
|
+
"properties": {
|
|
6799
|
+
"type": {
|
|
6800
|
+
"type": "string",
|
|
6801
|
+
"enum": [
|
|
6802
|
+
"enabled",
|
|
6803
|
+
"disabled"
|
|
6804
|
+
]
|
|
6805
|
+
},
|
|
6806
|
+
"budgetTokens": {
|
|
6807
|
+
"type": "number"
|
|
6808
|
+
}
|
|
6809
|
+
},
|
|
6810
|
+
"required": [
|
|
6811
|
+
"type"
|
|
6812
|
+
],
|
|
6813
|
+
"additionalProperties": false
|
|
6814
|
+
}
|
|
6815
|
+
},
|
|
6816
|
+
"required": [
|
|
6817
|
+
"model"
|
|
6818
|
+
],
|
|
6819
|
+
"additionalProperties": false
|
|
6820
|
+
}
|
|
6821
|
+
]
|
|
6822
|
+
}
|
|
5666
6823
|
},
|
|
5667
6824
|
"fallback_models": {
|
|
5668
6825
|
"anyOf": [
|
|
@@ -6127,6 +7284,95 @@
|
|
|
6127
7284
|
"model": {
|
|
6128
7285
|
"type": "string"
|
|
6129
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
|
+
},
|
|
6130
7376
|
"fallback_models": {
|
|
6131
7377
|
"anyOf": [
|
|
6132
7378
|
{
|
|
@@ -6591,6 +7837,95 @@
|
|
|
6591
7837
|
"model": {
|
|
6592
7838
|
"type": "string"
|
|
6593
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
|
+
}
|
|
7926
|
+
]
|
|
7927
|
+
}
|
|
7928
|
+
},
|
|
6594
7929
|
"fallback_models": {
|
|
6595
7930
|
"anyOf": [
|
|
6596
7931
|
{
|