akm-cli 0.9.1 → 0.9.2-alpha.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/CHANGELOG.md +88 -0
- package/README.md +3 -1
- package/SECURITY.md +1 -1
- package/STABILITY.md +1 -1
- package/dist/akm +2 -2
- package/dist/akm-migrate +2 -2
- package/dist/assets/hints/cli-hints-full.md +14 -9
- package/dist/assets/improve-strategies/proactive-maintenance.json +1 -1
- package/dist/assets/improve-strategies/reflect-distill.json +1 -1
- package/dist/assets/models.json +35 -0
- package/dist/assets/tasks/core/extract.yml +6 -5
- package/dist/assets/tasks/core/improve.yml +6 -5
- package/dist/assets/tasks/core/index-refresh.yml +6 -5
- package/dist/assets/tasks/core/sync.yml +6 -5
- package/dist/assets/tasks/core/version-check.yml +6 -5
- package/dist/assets/tasks/improve/akm-graph-refresh-weekly.yml +6 -5
- package/dist/assets/tasks/improve/akm-improve-catchup.yml +6 -5
- package/dist/assets/tasks/improve/akm-improve-consolidate.yml +6 -5
- package/dist/assets/tasks/improve/akm-improve-frequent.yml +6 -5
- package/dist/assets/tasks/improve/akm-improve-nightly.yml +6 -5
- package/dist/cli/confirm.js +2 -2
- package/dist/cli/parse-args.js +3 -24
- package/dist/cli/retired-commands.js +1 -1
- package/dist/cli/shared.js +2 -2
- package/dist/cli.js +11 -9
- package/dist/commands/agent/agent-dispatch.js +55 -89
- package/dist/commands/agent/contribute-cli.js +12 -45
- package/dist/commands/command/builtin-action.js +32 -0
- package/dist/commands/command/command-cli.js +99 -0
- package/dist/commands/command/command-execution.js +308 -0
- package/dist/commands/command/execution-source-loader.js +176 -0
- package/dist/commands/command/portable-template.js +60 -0
- package/dist/commands/config-cli.js +10 -4
- package/dist/commands/env/env.js +4 -2
- package/dist/commands/feedback-cli.js +1 -1
- package/dist/commands/health/checks.js +241 -29
- package/dist/commands/health/html-report.js +0 -14
- package/dist/commands/health/report-view-model.js +0 -1
- package/dist/commands/health/surfaces.js +6 -7
- package/dist/commands/health/types.js +0 -2
- package/dist/commands/health.js +63 -18
- package/dist/commands/improve/collapse-detector.js +2 -2
- package/dist/commands/improve/consolidate.js +251 -214
- package/dist/commands/improve/distill/promote-memory.js +71 -34
- package/dist/commands/improve/distill/quality-gate.js +17 -5
- package/dist/commands/improve/distill.js +232 -155
- package/dist/commands/improve/eligibility.js +112 -79
- package/dist/commands/improve/execution.js +57 -0
- package/dist/commands/improve/extract-cli.js +5 -5
- package/dist/commands/improve/extract.js +521 -342
- package/dist/commands/improve/improve-strategies.js +43 -14
- package/dist/commands/improve/improve.js +249 -29
- package/dist/commands/improve/loop-stages.js +11 -17
- package/dist/commands/improve/memory/memory-contradiction-detect.js +90 -66
- package/dist/commands/improve/outcome-loop.js +22 -38
- package/dist/commands/improve/planner.js +134 -0
- package/dist/commands/improve/preparation.js +730 -409
- package/dist/commands/improve/reflect.js +386 -223
- package/dist/commands/improve/run-context.js +3 -4
- package/dist/commands/improve/salience.js +6 -58
- package/dist/commands/improve/session-asset.js +12 -12
- package/dist/commands/lint/index.js +101 -29
- package/dist/commands/migrate-cli.js +11 -69
- package/dist/commands/migration-tool.js +6 -9
- package/dist/commands/models-cli.js +27 -0
- package/dist/commands/proposal/drain.js +258 -186
- package/dist/commands/proposal/proposal-cli.js +32 -10
- package/dist/commands/proposal/proposal.js +2 -5
- package/dist/commands/proposal/propose.js +192 -172
- package/dist/commands/proposal/repository.js +54 -91
- package/dist/commands/proposal/validators/proposal-validators.js +9 -7
- package/dist/commands/read/curate.js +10 -0
- package/dist/commands/read/registry-search.js +25 -9
- package/dist/commands/read/remember-cli.js +14 -2
- package/dist/commands/read/search.js +10 -4
- package/dist/commands/read/show.js +139 -153
- package/dist/commands/registry-cli.js +16 -7
- package/dist/commands/remember.js +33 -18
- package/dist/commands/sources/add-cli.js +19 -178
- package/dist/commands/sources/bundle-cli.js +15 -3
- package/dist/commands/sources/dangerous-env-audit.js +135 -0
- package/dist/commands/sources/info.js +2 -1
- package/dist/commands/sources/installed-stashes.js +835 -152
- package/dist/commands/sources/schema-repair.js +174 -95
- package/dist/commands/sources/self-update.js +30 -74
- package/dist/commands/sources/source-add.js +3 -5
- package/dist/commands/sources/sources-cli.js +2 -15
- package/dist/commands/sources/update-transaction.js +220 -0
- package/dist/commands/tasks/tasks-cli.js +3 -3
- package/dist/commands/tasks/tasks.js +736 -317
- package/dist/commands/workflow-cli.js +2 -2
- package/dist/core/adapter/adapters/agent-skills-adapter.js +3 -0
- package/dist/core/adapter/adapters/akm-adapter.js +83 -34
- package/dist/core/adapter/adapters/akm-lint.js +54 -39
- package/dist/core/adapter/adapters/akm-metadata.js +45 -45
- package/dist/core/adapter/adapters/akm-task-adapter.js +32 -49
- package/dist/core/adapter/adapters/akm-workflow-adapter.js +38 -23
- package/dist/core/adapter/adapters/dotenv-adapter.js +30 -1
- package/dist/core/adapter/adapters/generic-files-adapter.js +11 -0
- package/dist/core/adapter/adapters/index.js +0 -9
- package/dist/core/adapter/adapters/llm-wiki-adapter.js +4 -0
- package/dist/core/adapter/adapters/okf-adapter.js +4 -0
- package/dist/core/adapter/adapters/opencode-adapter.js +5 -8
- package/dist/core/adapter/adapters/tool-dir-shared.js +63 -6
- package/dist/core/adapter/adapters/website-snapshot-adapter.js +4 -0
- package/dist/core/adapter/execution-source.js +308 -0
- package/dist/core/adapter/recognize-match.js +36 -13
- package/dist/core/adapter/registry.js +0 -9
- package/dist/core/asset/stash-meta.js +94 -4
- package/dist/core/common.js +6 -11
- package/dist/core/config/config-io.js +3 -3
- package/dist/core/config/config-schema.js +18 -40
- package/dist/core/config/config-sources.js +11 -21
- package/dist/core/config/config-walker.js +31 -13
- package/dist/core/config/config.js +21 -20
- package/dist/core/config/schema/engines.js +8 -7
- package/dist/core/config/schema/improve-processes.js +29 -5
- package/dist/core/config/schema/primitives.js +1 -23
- package/dist/core/config/schema/sources-bundles.js +13 -16
- package/dist/core/errors.js +2 -0
- package/dist/core/events.js +68 -32
- package/dist/core/extra-params.js +1 -0
- package/dist/core/improve-result.js +315 -0
- package/dist/core/lesson-lint.js +0 -6
- package/dist/core/maintenance-barrier.js +4 -4
- package/dist/core/network-policy.js +152 -0
- package/dist/core/paths.js +1 -1
- package/dist/core/recognition-util.js +4 -4
- package/dist/core/registry-url.js +456 -0
- package/dist/core/state/migrations.js +161 -47
- package/dist/core/state-db.js +453 -80
- package/dist/core/system-error.js +32 -0
- package/dist/core/time.js +2 -12
- package/dist/core/write-source.js +0 -18
- package/dist/execution/directory-identity.js +52 -0
- package/dist/execution/executable-identity.js +107 -0
- package/dist/execution/guarded-source.js +398 -0
- package/dist/execution/json.js +95 -0
- package/dist/{commands/health/types-session-log.js → execution/limits.js} +2 -1
- package/dist/execution/record.js +55 -0
- package/dist/execution/resolved-request.js +730 -0
- package/dist/execution/source.js +320 -0
- package/dist/indexer/bundle-identity-guard.js +5 -4
- package/dist/indexer/db/graph-db.js +33 -0
- package/dist/indexer/graph/graph-boost.js +3 -4
- package/dist/indexer/graph/graph-extraction.js +562 -373
- package/dist/indexer/index-written-assets.js +65 -34
- package/dist/indexer/indexer.js +443 -222
- package/dist/indexer/installations.js +6 -0
- package/dist/indexer/lookup/adapter-concept-owner.js +283 -0
- package/dist/indexer/passes/memory-inference.js +227 -174
- package/dist/indexer/scan/doc-to-entry.js +7 -9
- package/dist/indexer/scan/drain-dir.js +51 -23
- package/dist/indexer/search/db-search.js +98 -22
- package/dist/indexer/search/search-fields.js +1 -1
- package/dist/indexer/search/search-hit-enrichers.js +1 -1
- package/dist/indexer/search/search-source.js +7 -16
- package/dist/indexer/search/semantic-status.js +10 -1
- package/dist/indexer/usage/show-usage.js +105 -0
- package/dist/indexer/usage/usage-events.js +7 -2
- package/dist/indexer/walk/matchers.js +40 -10
- package/dist/indexer/walk/path-resolver.js +5 -2
- package/dist/indexer/walk/walker.js +20 -2
- package/dist/integrations/agent/builder-shared.js +3 -6
- package/dist/integrations/agent/conversation-fallback.js +16 -0
- package/dist/integrations/agent/engine-resolution.js +87 -87
- package/dist/integrations/agent/execution-cascade.js +566 -0
- package/dist/integrations/agent/execution-definitions.js +211 -0
- package/dist/integrations/agent/execution-lowering.js +811 -0
- package/dist/integrations/agent/execution-preparation.js +67 -0
- package/dist/integrations/agent/index.js +0 -2
- package/dist/integrations/agent/inline-execution.js +74 -0
- package/dist/integrations/agent/model-map.js +515 -0
- package/dist/integrations/agent/persona-fallback.js +30 -0
- package/dist/integrations/agent/request-lowering.js +186 -0
- package/dist/integrations/agent/runner-dispatch.js +230 -37
- package/dist/integrations/agent/runner.js +12 -83
- package/dist/integrations/harnesses/aider/agent-builder.js +8 -0
- package/dist/integrations/harnesses/aider/index.js +0 -1
- package/dist/integrations/harnesses/amazonq/agent-builder.js +8 -0
- package/dist/integrations/harnesses/amazonq/index.js +0 -1
- package/dist/integrations/harnesses/claude/agent-builder.js +14 -1
- package/dist/integrations/harnesses/claude/index.js +1 -5
- package/dist/integrations/harnesses/claude/session-log.js +3 -33
- package/dist/integrations/harnesses/codex/agent-builder.js +8 -0
- package/dist/integrations/harnesses/codex/index.js +0 -1
- package/dist/integrations/harnesses/copilot/agent-builder.js +8 -0
- package/dist/integrations/harnesses/copilot/index.js +0 -1
- package/dist/integrations/harnesses/gemini/agent-builder.js +8 -0
- package/dist/integrations/harnesses/gemini/index.js +0 -1
- package/dist/integrations/harnesses/index.js +4 -44
- package/dist/integrations/harnesses/opencode/agent-builder.js +16 -9
- package/dist/integrations/harnesses/opencode/index.js +0 -2
- package/dist/integrations/harnesses/opencode/session-log.js +14 -204
- package/dist/integrations/harnesses/opencode-sdk/harness.js +12 -1
- package/dist/integrations/harnesses/opencode-sdk/sdk-runner.js +40 -42
- package/dist/integrations/harnesses/openhands/agent-builder.js +8 -0
- package/dist/integrations/harnesses/openhands/index.js +0 -1
- package/dist/integrations/harnesses/pi/agent-builder.js +8 -0
- package/dist/integrations/harnesses/pi/index.js +0 -1
- package/dist/integrations/harnesses/shared.js +0 -1
- package/dist/integrations/harnesses/types.js +1 -3
- package/dist/integrations/lockfile.js +82 -79
- package/dist/integrations/session-logs/index.js +6 -17
- package/dist/integrations/session-logs/provider-base.js +1 -29
- package/dist/llm/client.js +10 -5
- package/dist/llm/embedder.js +6 -7
- package/dist/llm/embedders/local.js +37 -88
- package/dist/llm/embedders/types.js +1 -1
- package/dist/llm/graph-extract.js +75 -50
- package/dist/llm/index-passes.js +43 -5
- package/dist/llm/memory-infer.js +8 -6
- package/dist/llm/metadata-enhance.js +5 -3
- package/dist/llm/structured-call.js +122 -25
- package/dist/output/format-exempt.js +1 -1
- package/dist/output/render-registry.js +0 -16
- package/dist/output/renderers.js +12 -7
- package/dist/output/shapes/curate.js +1 -0
- package/dist/output/shapes/helpers.js +10 -2
- package/dist/output/shapes/passthrough.js +2 -0
- package/dist/output/text/command-format.js +28 -32
- package/dist/output/text/health-format.js +1 -29
- package/dist/output/text/migrate.js +6 -56
- package/dist/output/text/proposal-format.js +16 -1
- package/dist/output/text/workflow-format.js +16 -0
- package/dist/registry/network.js +279 -0
- package/dist/registry/pinned-request-helper.js +247 -0
- package/dist/registry/pinned-transport.js +717 -0
- package/dist/registry/providers/skills-sh.js +18 -6
- package/dist/registry/providers/static-index.js +20 -7
- package/dist/registry/resolve.js +53 -28
- package/dist/scripts/akm-migrate-node.js +19122 -52218
- package/dist/scripts/akm-migrate.js +19064 -51567
- package/dist/setup/registry-stash-loader.js +64 -20
- package/dist/setup/semantic-assets.js +9 -34
- package/dist/setup/setup.js +12 -30
- package/dist/setup/source-identity.js +17 -0
- package/dist/setup/steps/sources.js +36 -15
- package/dist/setup/steps/tasks.js +39 -11
- package/dist/sources/providers/git-provider.js +3 -3
- package/dist/sources/providers/npm.js +2 -2
- package/dist/sources/providers/provider-utils.js +4 -3
- package/dist/sources/providers/website.js +11 -7
- package/dist/sources/snapshot-fetchers/host-guard.js +9 -136
- package/dist/sources/snapshot-fetchers/website-ingest.js +25 -109
- package/dist/sources/website-url.js +73 -0
- package/dist/storage/engines/sqlite-migrations.js +81 -26
- package/dist/storage/managed-db.js +27 -24
- package/dist/storage/repositories/events-repository.js +3 -0
- package/dist/storage/repositories/index-connection.js +42 -10
- package/dist/storage/repositories/index-entries-repository.js +167 -207
- package/dist/storage/repositories/index-entry-mapper.js +8 -12
- package/dist/storage/repositories/index-entry-schema.js +255 -0
- package/dist/storage/repositories/index-fts-repository.js +10 -10
- package/dist/storage/repositories/index-llm-cache-repository.js +8 -13
- package/dist/storage/repositories/index-meta-repository.js +0 -11
- package/dist/storage/repositories/index-schema.js +71 -342
- package/dist/storage/repositories/index-utility-repository.js +12 -17
- package/dist/storage/repositories/index-vec-repository.js +1 -1
- package/dist/storage/repositories/proposals-repository.js +4 -127
- package/dist/storage/repositories/registry-cache.js +2 -1
- package/dist/storage/repositories/task-history-repository.js +20 -40
- package/dist/storage/repositories/workflow-runs-repository.js +228 -129
- package/dist/storage/sqlite-read-snapshot.js +148 -0
- package/dist/tasks/backends/cron.js +170 -42
- package/dist/tasks/backends/index.js +1 -1
- package/dist/tasks/backends/launchd.js +787 -202
- package/dist/tasks/backends/schtasks.js +282 -83
- package/dist/tasks/embedded.js +7 -7
- package/dist/tasks/frozen-script.js +50 -0
- package/dist/tasks/resolve-akm-bin.js +5 -1
- package/dist/tasks/runner.js +239 -251
- package/dist/tasks/runtime-v3.js +281 -0
- package/dist/tasks/scheduler-binding.js +272 -0
- package/dist/tasks/scheduler-invocation.js +57 -43
- package/dist/tasks/scheduler-sync.js +654 -0
- package/dist/tasks/source-v3.js +752 -0
- package/dist/tasks/standalone-script-entry.js +5 -0
- package/dist/tasks/task-id.js +29 -0
- package/dist/workflows/authoring/authoring.js +15 -32
- package/dist/workflows/exec/dispatch-redaction.js +14 -8
- package/dist/workflows/exec/exec-unit.js +7 -28
- package/dist/workflows/exec/frozen-judge.js +57 -89
- package/dist/workflows/exec/lowering-notices.js +23 -0
- package/dist/workflows/exec/native-executor.js +301 -458
- package/dist/workflows/exec/param-secrets.js +4 -3
- package/dist/workflows/exec/run-workflow.js +26 -32
- package/dist/workflows/exec/step-work.js +105 -109
- package/dist/workflows/exec/unit-dispatch.js +103 -27
- package/dist/workflows/exec/unit-writer.js +3 -3
- package/dist/workflows/exec/worktree.js +2 -2
- package/dist/workflows/ir/compile.js +86 -72
- package/dist/workflows/ir/environment-v4.js +328 -0
- package/dist/workflows/ir/freeze-v4.js +122 -0
- package/dist/workflows/ir/plan-hash.js +13 -7
- package/dist/workflows/ir/schema-v4.js +525 -0
- package/dist/workflows/ir/schema.js +25 -284
- package/dist/workflows/ir/source-freeze-v4.js +506 -0
- package/dist/workflows/parser.js +27 -24
- package/dist/workflows/program/schema.js +1 -2
- package/dist/workflows/renderer.js +42 -29
- package/dist/workflows/resource-limits.js +4 -5
- package/dist/workflows/runtime/agent-identity.js +11 -13
- package/dist/workflows/runtime/plan-classifier.js +8 -8
- package/dist/workflows/runtime/runs.js +27 -43
- package/dist/workflows/runtime/workflow-asset-loader.js +45 -205
- package/dist/workflows/source-files.js +373 -0
- package/dist/workflows/source-ir/compile.js +196 -0
- package/dist/workflows/source-ir/github-yaml.js +577 -0
- package/dist/workflows/source-ir/ordering.js +38 -0
- package/dist/workflows/source-ir/program.js +50 -0
- package/dist/workflows/source-ir/result.js +26 -0
- package/dist/workflows/source-ir/schema.js +772 -0
- package/dist/workflows/source-ir/semantics.js +242 -0
- package/dist/workflows/source-ir/uses.js +14 -0
- package/docs/README.md +2 -0
- package/docs/migration/README.md +3 -1
- package/docs/migration/release-notes/0.9.2.md +55 -0
- package/docs/migration/release-notes/README.md +5 -0
- package/docs/migration/v0.8-to-v0.9.md +76 -1077
- package/docs/migration/v0.9.0-troubleshooting.md +104 -516
- package/docs/migration/v0.9.1-to-v0.9.2.md +150 -0
- package/docs/reference/README.md +1 -0
- package/docs/reference/cli.md +230 -98
- package/docs/reference/configuration.md +153 -27
- package/docs/reference/data-and-telemetry.md +19 -1
- package/docs/reference/supported-formats.md +23 -3
- package/docs/reference/tasks.md +182 -0
- package/docs/reference/workflow-schema.md +91 -40
- package/docs/reference/workflows.md +33 -6
- package/package.json +10 -6
- package/schemas/akm-config.json +372 -216
- package/schemas/akm-task.json +324 -80
- package/schemas/akm-workflow.json +6 -9
- package/dist/core/migration-operation.js +0 -75
- package/dist/integrations/agent/model-aliases.js +0 -74
- package/dist/tasks/parser.js +0 -380
- package/dist/tasks/schema.js +0 -123
- package/dist/tasks/validator.js +0 -80
- package/dist/workflows/ir/freeze.js +0 -320
- package/dist/workflows/runtime/document-cache.js +0 -13
package/schemas/akm-config.json
CHANGED
|
@@ -70,6 +70,10 @@
|
|
|
70
70
|
},
|
|
71
71
|
"enableThinking": {
|
|
72
72
|
"type": "boolean"
|
|
73
|
+
},
|
|
74
|
+
"reasoningEffort": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"minLength": 1
|
|
73
77
|
}
|
|
74
78
|
},
|
|
75
79
|
"required": [
|
|
@@ -131,16 +135,6 @@
|
|
|
131
135
|
}
|
|
132
136
|
]
|
|
133
137
|
},
|
|
134
|
-
"modelAliases": {
|
|
135
|
-
"type": "object",
|
|
136
|
-
"additionalProperties": {
|
|
137
|
-
"type": "string",
|
|
138
|
-
"minLength": 1
|
|
139
|
-
},
|
|
140
|
-
"propertyNames": {
|
|
141
|
-
"minLength": 1
|
|
142
|
-
}
|
|
143
|
-
},
|
|
144
138
|
"llmEngine": {
|
|
145
139
|
"type": "string",
|
|
146
140
|
"maxLength": 63,
|
|
@@ -181,22 +175,6 @@
|
|
|
181
175
|
},
|
|
182
176
|
"additionalProperties": true
|
|
183
177
|
},
|
|
184
|
-
"modelAliases": {
|
|
185
|
-
"type": "object",
|
|
186
|
-
"additionalProperties": {
|
|
187
|
-
"type": "object",
|
|
188
|
-
"additionalProperties": {
|
|
189
|
-
"type": "string",
|
|
190
|
-
"minLength": 1
|
|
191
|
-
},
|
|
192
|
-
"propertyNames": {
|
|
193
|
-
"minLength": 1
|
|
194
|
-
}
|
|
195
|
-
},
|
|
196
|
-
"propertyNames": {
|
|
197
|
-
"minLength": 1
|
|
198
|
-
}
|
|
199
|
-
},
|
|
200
178
|
"semanticSearchMode": {
|
|
201
179
|
"type": "string",
|
|
202
180
|
"enum": [
|
|
@@ -308,6 +286,10 @@
|
|
|
308
286
|
},
|
|
309
287
|
"enableThinking": {
|
|
310
288
|
"type": "boolean"
|
|
289
|
+
},
|
|
290
|
+
"reasoningEffort": {
|
|
291
|
+
"type": "string",
|
|
292
|
+
"minLength": 1
|
|
311
293
|
}
|
|
312
294
|
},
|
|
313
295
|
"additionalProperties": true
|
|
@@ -378,6 +360,10 @@
|
|
|
378
360
|
},
|
|
379
361
|
"enableThinking": {
|
|
380
362
|
"type": "boolean"
|
|
363
|
+
},
|
|
364
|
+
"reasoningEffort": {
|
|
365
|
+
"type": "string",
|
|
366
|
+
"minLength": 1
|
|
381
367
|
}
|
|
382
368
|
},
|
|
383
369
|
"additionalProperties": true
|
|
@@ -679,6 +665,10 @@
|
|
|
679
665
|
},
|
|
680
666
|
"enableThinking": {
|
|
681
667
|
"type": "boolean"
|
|
668
|
+
},
|
|
669
|
+
"reasoningEffort": {
|
|
670
|
+
"type": "string",
|
|
671
|
+
"minLength": 1
|
|
682
672
|
}
|
|
683
673
|
},
|
|
684
674
|
"additionalProperties": true
|
|
@@ -725,6 +715,10 @@
|
|
|
725
715
|
},
|
|
726
716
|
"enableThinking": {
|
|
727
717
|
"type": "boolean"
|
|
718
|
+
},
|
|
719
|
+
"reasoningEffort": {
|
|
720
|
+
"type": "string",
|
|
721
|
+
"minLength": 1
|
|
728
722
|
}
|
|
729
723
|
},
|
|
730
724
|
"additionalProperties": true
|
|
@@ -810,6 +804,10 @@
|
|
|
810
804
|
},
|
|
811
805
|
"enableThinking": {
|
|
812
806
|
"type": "boolean"
|
|
807
|
+
},
|
|
808
|
+
"reasoningEffort": {
|
|
809
|
+
"type": "string",
|
|
810
|
+
"minLength": 1
|
|
813
811
|
}
|
|
814
812
|
},
|
|
815
813
|
"additionalProperties": true
|
|
@@ -911,6 +909,10 @@
|
|
|
911
909
|
},
|
|
912
910
|
"enableThinking": {
|
|
913
911
|
"type": "boolean"
|
|
912
|
+
},
|
|
913
|
+
"reasoningEffort": {
|
|
914
|
+
"type": "string",
|
|
915
|
+
"minLength": 1
|
|
914
916
|
}
|
|
915
917
|
},
|
|
916
918
|
"additionalProperties": true
|
|
@@ -1036,6 +1038,10 @@
|
|
|
1036
1038
|
},
|
|
1037
1039
|
"enableThinking": {
|
|
1038
1040
|
"type": "boolean"
|
|
1041
|
+
},
|
|
1042
|
+
"reasoningEffort": {
|
|
1043
|
+
"type": "string",
|
|
1044
|
+
"minLength": 1
|
|
1039
1045
|
}
|
|
1040
1046
|
},
|
|
1041
1047
|
"additionalProperties": true
|
|
@@ -1109,6 +1115,10 @@
|
|
|
1109
1115
|
},
|
|
1110
1116
|
"enableThinking": {
|
|
1111
1117
|
"type": "boolean"
|
|
1118
|
+
},
|
|
1119
|
+
"reasoningEffort": {
|
|
1120
|
+
"type": "string",
|
|
1121
|
+
"minLength": 1
|
|
1112
1122
|
}
|
|
1113
1123
|
},
|
|
1114
1124
|
"additionalProperties": true
|
|
@@ -1184,6 +1194,10 @@
|
|
|
1184
1194
|
},
|
|
1185
1195
|
"enableThinking": {
|
|
1186
1196
|
"type": "boolean"
|
|
1197
|
+
},
|
|
1198
|
+
"reasoningEffort": {
|
|
1199
|
+
"type": "string",
|
|
1200
|
+
"minLength": 1
|
|
1187
1201
|
}
|
|
1188
1202
|
},
|
|
1189
1203
|
"additionalProperties": true
|
|
@@ -1280,6 +1294,10 @@
|
|
|
1280
1294
|
},
|
|
1281
1295
|
"enableThinking": {
|
|
1282
1296
|
"type": "boolean"
|
|
1297
|
+
},
|
|
1298
|
+
"reasoningEffort": {
|
|
1299
|
+
"type": "string",
|
|
1300
|
+
"minLength": 1
|
|
1283
1301
|
}
|
|
1284
1302
|
},
|
|
1285
1303
|
"additionalProperties": true
|
|
@@ -1336,6 +1354,10 @@
|
|
|
1336
1354
|
},
|
|
1337
1355
|
"enableThinking": {
|
|
1338
1356
|
"type": "boolean"
|
|
1357
|
+
},
|
|
1358
|
+
"reasoningEffort": {
|
|
1359
|
+
"type": "string",
|
|
1360
|
+
"minLength": 1
|
|
1339
1361
|
}
|
|
1340
1362
|
},
|
|
1341
1363
|
"additionalProperties": true
|
|
@@ -1377,57 +1399,71 @@
|
|
|
1377
1399
|
"type": "boolean"
|
|
1378
1400
|
},
|
|
1379
1401
|
"judgment": {
|
|
1380
|
-
"
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
"type": "string",
|
|
1384
|
-
"maxLength": 63,
|
|
1385
|
-
"pattern": "^(?!akm-)[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
|
|
1386
|
-
},
|
|
1387
|
-
"model": {
|
|
1388
|
-
"type": "string",
|
|
1389
|
-
"minLength": 1
|
|
1390
|
-
},
|
|
1391
|
-
"timeoutMs": {
|
|
1392
|
-
"anyOf": [
|
|
1393
|
-
{
|
|
1394
|
-
"type": "integer",
|
|
1395
|
-
"exclusiveMinimum": 0
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
"type": "null"
|
|
1399
|
-
}
|
|
1400
|
-
]
|
|
1402
|
+
"anyOf": [
|
|
1403
|
+
{
|
|
1404
|
+
"type": "boolean"
|
|
1401
1405
|
},
|
|
1402
|
-
|
|
1406
|
+
{
|
|
1403
1407
|
"type": "object",
|
|
1404
1408
|
"properties": {
|
|
1405
|
-
"
|
|
1406
|
-
"type": "number"
|
|
1407
|
-
},
|
|
1408
|
-
"maxTokens": {
|
|
1409
|
-
"type": "integer",
|
|
1410
|
-
"exclusiveMinimum": 0
|
|
1411
|
-
},
|
|
1412
|
-
"supportsJsonSchema": {
|
|
1409
|
+
"enabled": {
|
|
1413
1410
|
"type": "boolean"
|
|
1414
1411
|
},
|
|
1415
|
-
"
|
|
1416
|
-
"type": "
|
|
1417
|
-
"
|
|
1412
|
+
"engine": {
|
|
1413
|
+
"type": "string",
|
|
1414
|
+
"maxLength": 63,
|
|
1415
|
+
"pattern": "^(?!akm-)[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
|
|
1418
1416
|
},
|
|
1419
|
-
"
|
|
1420
|
-
"type": "
|
|
1421
|
-
"
|
|
1417
|
+
"model": {
|
|
1418
|
+
"type": "string",
|
|
1419
|
+
"minLength": 1
|
|
1422
1420
|
},
|
|
1423
|
-
"
|
|
1424
|
-
"
|
|
1421
|
+
"timeoutMs": {
|
|
1422
|
+
"anyOf": [
|
|
1423
|
+
{
|
|
1424
|
+
"type": "integer",
|
|
1425
|
+
"exclusiveMinimum": 0
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
"type": "null"
|
|
1429
|
+
}
|
|
1430
|
+
]
|
|
1431
|
+
},
|
|
1432
|
+
"llm": {
|
|
1433
|
+
"type": "object",
|
|
1434
|
+
"properties": {
|
|
1435
|
+
"temperature": {
|
|
1436
|
+
"type": "number"
|
|
1437
|
+
},
|
|
1438
|
+
"maxTokens": {
|
|
1439
|
+
"type": "integer",
|
|
1440
|
+
"exclusiveMinimum": 0
|
|
1441
|
+
},
|
|
1442
|
+
"supportsJsonSchema": {
|
|
1443
|
+
"type": "boolean"
|
|
1444
|
+
},
|
|
1445
|
+
"extraParams": {
|
|
1446
|
+
"type": "object",
|
|
1447
|
+
"additionalProperties": {}
|
|
1448
|
+
},
|
|
1449
|
+
"contextLength": {
|
|
1450
|
+
"type": "integer",
|
|
1451
|
+
"exclusiveMinimum": 0
|
|
1452
|
+
},
|
|
1453
|
+
"enableThinking": {
|
|
1454
|
+
"type": "boolean"
|
|
1455
|
+
},
|
|
1456
|
+
"reasoningEffort": {
|
|
1457
|
+
"type": "string",
|
|
1458
|
+
"minLength": 1
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
"additionalProperties": false
|
|
1425
1462
|
}
|
|
1426
1463
|
},
|
|
1427
|
-
"additionalProperties":
|
|
1464
|
+
"additionalProperties": false
|
|
1428
1465
|
}
|
|
1429
|
-
|
|
1430
|
-
"additionalProperties": true
|
|
1466
|
+
]
|
|
1431
1467
|
}
|
|
1432
1468
|
},
|
|
1433
1469
|
"additionalProperties": true
|
|
@@ -1467,6 +1503,10 @@
|
|
|
1467
1503
|
},
|
|
1468
1504
|
"enableThinking": {
|
|
1469
1505
|
"type": "boolean"
|
|
1506
|
+
},
|
|
1507
|
+
"reasoningEffort": {
|
|
1508
|
+
"type": "string",
|
|
1509
|
+
"minLength": 1
|
|
1470
1510
|
}
|
|
1471
1511
|
},
|
|
1472
1512
|
"additionalProperties": true
|
|
@@ -1724,6 +1764,10 @@
|
|
|
1724
1764
|
},
|
|
1725
1765
|
"enableThinking": {
|
|
1726
1766
|
"type": "boolean"
|
|
1767
|
+
},
|
|
1768
|
+
"reasoningEffort": {
|
|
1769
|
+
"type": "string",
|
|
1770
|
+
"minLength": 1
|
|
1727
1771
|
}
|
|
1728
1772
|
},
|
|
1729
1773
|
"required": [
|
|
@@ -1785,16 +1829,6 @@
|
|
|
1785
1829
|
}
|
|
1786
1830
|
]
|
|
1787
1831
|
},
|
|
1788
|
-
"modelAliases": {
|
|
1789
|
-
"type": "object",
|
|
1790
|
-
"additionalProperties": {
|
|
1791
|
-
"type": "string",
|
|
1792
|
-
"minLength": 1
|
|
1793
|
-
},
|
|
1794
|
-
"propertyNames": {
|
|
1795
|
-
"minLength": 1
|
|
1796
|
-
}
|
|
1797
|
-
},
|
|
1798
1832
|
"llmEngine": {
|
|
1799
1833
|
"type": "string",
|
|
1800
1834
|
"maxLength": 63,
|
|
@@ -1835,22 +1869,6 @@
|
|
|
1835
1869
|
},
|
|
1836
1870
|
"additionalProperties": true
|
|
1837
1871
|
},
|
|
1838
|
-
"modelAliases": {
|
|
1839
|
-
"type": "object",
|
|
1840
|
-
"additionalProperties": {
|
|
1841
|
-
"type": "object",
|
|
1842
|
-
"additionalProperties": {
|
|
1843
|
-
"type": "string",
|
|
1844
|
-
"minLength": 1
|
|
1845
|
-
},
|
|
1846
|
-
"propertyNames": {
|
|
1847
|
-
"minLength": 1
|
|
1848
|
-
}
|
|
1849
|
-
},
|
|
1850
|
-
"propertyNames": {
|
|
1851
|
-
"minLength": 1
|
|
1852
|
-
}
|
|
1853
|
-
},
|
|
1854
1872
|
"semanticSearchMode": {
|
|
1855
1873
|
"type": "string",
|
|
1856
1874
|
"enum": [
|
|
@@ -1962,6 +1980,10 @@
|
|
|
1962
1980
|
},
|
|
1963
1981
|
"enableThinking": {
|
|
1964
1982
|
"type": "boolean"
|
|
1983
|
+
},
|
|
1984
|
+
"reasoningEffort": {
|
|
1985
|
+
"type": "string",
|
|
1986
|
+
"minLength": 1
|
|
1965
1987
|
}
|
|
1966
1988
|
},
|
|
1967
1989
|
"additionalProperties": true
|
|
@@ -2032,6 +2054,10 @@
|
|
|
2032
2054
|
},
|
|
2033
2055
|
"enableThinking": {
|
|
2034
2056
|
"type": "boolean"
|
|
2057
|
+
},
|
|
2058
|
+
"reasoningEffort": {
|
|
2059
|
+
"type": "string",
|
|
2060
|
+
"minLength": 1
|
|
2035
2061
|
}
|
|
2036
2062
|
},
|
|
2037
2063
|
"additionalProperties": true
|
|
@@ -2333,6 +2359,10 @@
|
|
|
2333
2359
|
},
|
|
2334
2360
|
"enableThinking": {
|
|
2335
2361
|
"type": "boolean"
|
|
2362
|
+
},
|
|
2363
|
+
"reasoningEffort": {
|
|
2364
|
+
"type": "string",
|
|
2365
|
+
"minLength": 1
|
|
2336
2366
|
}
|
|
2337
2367
|
},
|
|
2338
2368
|
"additionalProperties": true
|
|
@@ -2379,6 +2409,10 @@
|
|
|
2379
2409
|
},
|
|
2380
2410
|
"enableThinking": {
|
|
2381
2411
|
"type": "boolean"
|
|
2412
|
+
},
|
|
2413
|
+
"reasoningEffort": {
|
|
2414
|
+
"type": "string",
|
|
2415
|
+
"minLength": 1
|
|
2382
2416
|
}
|
|
2383
2417
|
},
|
|
2384
2418
|
"additionalProperties": true
|
|
@@ -2464,6 +2498,10 @@
|
|
|
2464
2498
|
},
|
|
2465
2499
|
"enableThinking": {
|
|
2466
2500
|
"type": "boolean"
|
|
2501
|
+
},
|
|
2502
|
+
"reasoningEffort": {
|
|
2503
|
+
"type": "string",
|
|
2504
|
+
"minLength": 1
|
|
2467
2505
|
}
|
|
2468
2506
|
},
|
|
2469
2507
|
"additionalProperties": true
|
|
@@ -2565,6 +2603,10 @@
|
|
|
2565
2603
|
},
|
|
2566
2604
|
"enableThinking": {
|
|
2567
2605
|
"type": "boolean"
|
|
2606
|
+
},
|
|
2607
|
+
"reasoningEffort": {
|
|
2608
|
+
"type": "string",
|
|
2609
|
+
"minLength": 1
|
|
2568
2610
|
}
|
|
2569
2611
|
},
|
|
2570
2612
|
"additionalProperties": true
|
|
@@ -2690,6 +2732,10 @@
|
|
|
2690
2732
|
},
|
|
2691
2733
|
"enableThinking": {
|
|
2692
2734
|
"type": "boolean"
|
|
2735
|
+
},
|
|
2736
|
+
"reasoningEffort": {
|
|
2737
|
+
"type": "string",
|
|
2738
|
+
"minLength": 1
|
|
2693
2739
|
}
|
|
2694
2740
|
},
|
|
2695
2741
|
"additionalProperties": true
|
|
@@ -2763,6 +2809,10 @@
|
|
|
2763
2809
|
},
|
|
2764
2810
|
"enableThinking": {
|
|
2765
2811
|
"type": "boolean"
|
|
2812
|
+
},
|
|
2813
|
+
"reasoningEffort": {
|
|
2814
|
+
"type": "string",
|
|
2815
|
+
"minLength": 1
|
|
2766
2816
|
}
|
|
2767
2817
|
},
|
|
2768
2818
|
"additionalProperties": true
|
|
@@ -2838,6 +2888,10 @@
|
|
|
2838
2888
|
},
|
|
2839
2889
|
"enableThinking": {
|
|
2840
2890
|
"type": "boolean"
|
|
2891
|
+
},
|
|
2892
|
+
"reasoningEffort": {
|
|
2893
|
+
"type": "string",
|
|
2894
|
+
"minLength": 1
|
|
2841
2895
|
}
|
|
2842
2896
|
},
|
|
2843
2897
|
"additionalProperties": true
|
|
@@ -2934,6 +2988,10 @@
|
|
|
2934
2988
|
},
|
|
2935
2989
|
"enableThinking": {
|
|
2936
2990
|
"type": "boolean"
|
|
2991
|
+
},
|
|
2992
|
+
"reasoningEffort": {
|
|
2993
|
+
"type": "string",
|
|
2994
|
+
"minLength": 1
|
|
2937
2995
|
}
|
|
2938
2996
|
},
|
|
2939
2997
|
"additionalProperties": true
|
|
@@ -2990,6 +3048,10 @@
|
|
|
2990
3048
|
},
|
|
2991
3049
|
"enableThinking": {
|
|
2992
3050
|
"type": "boolean"
|
|
3051
|
+
},
|
|
3052
|
+
"reasoningEffort": {
|
|
3053
|
+
"type": "string",
|
|
3054
|
+
"minLength": 1
|
|
2993
3055
|
}
|
|
2994
3056
|
},
|
|
2995
3057
|
"additionalProperties": true
|
|
@@ -3031,57 +3093,71 @@
|
|
|
3031
3093
|
"type": "boolean"
|
|
3032
3094
|
},
|
|
3033
3095
|
"judgment": {
|
|
3034
|
-
"
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
"type": "string",
|
|
3038
|
-
"maxLength": 63,
|
|
3039
|
-
"pattern": "^(?!akm-)[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
|
|
3040
|
-
},
|
|
3041
|
-
"model": {
|
|
3042
|
-
"type": "string",
|
|
3043
|
-
"minLength": 1
|
|
3044
|
-
},
|
|
3045
|
-
"timeoutMs": {
|
|
3046
|
-
"anyOf": [
|
|
3047
|
-
{
|
|
3048
|
-
"type": "integer",
|
|
3049
|
-
"exclusiveMinimum": 0
|
|
3050
|
-
},
|
|
3051
|
-
{
|
|
3052
|
-
"type": "null"
|
|
3053
|
-
}
|
|
3054
|
-
]
|
|
3096
|
+
"anyOf": [
|
|
3097
|
+
{
|
|
3098
|
+
"type": "boolean"
|
|
3055
3099
|
},
|
|
3056
|
-
|
|
3100
|
+
{
|
|
3057
3101
|
"type": "object",
|
|
3058
3102
|
"properties": {
|
|
3059
|
-
"
|
|
3060
|
-
"type": "number"
|
|
3061
|
-
},
|
|
3062
|
-
"maxTokens": {
|
|
3063
|
-
"type": "integer",
|
|
3064
|
-
"exclusiveMinimum": 0
|
|
3065
|
-
},
|
|
3066
|
-
"supportsJsonSchema": {
|
|
3103
|
+
"enabled": {
|
|
3067
3104
|
"type": "boolean"
|
|
3068
3105
|
},
|
|
3069
|
-
"
|
|
3070
|
-
"type": "
|
|
3071
|
-
"
|
|
3106
|
+
"engine": {
|
|
3107
|
+
"type": "string",
|
|
3108
|
+
"maxLength": 63,
|
|
3109
|
+
"pattern": "^(?!akm-)[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
|
|
3072
3110
|
},
|
|
3073
|
-
"
|
|
3074
|
-
"type": "
|
|
3075
|
-
"
|
|
3111
|
+
"model": {
|
|
3112
|
+
"type": "string",
|
|
3113
|
+
"minLength": 1
|
|
3076
3114
|
},
|
|
3077
|
-
"
|
|
3078
|
-
"
|
|
3115
|
+
"timeoutMs": {
|
|
3116
|
+
"anyOf": [
|
|
3117
|
+
{
|
|
3118
|
+
"type": "integer",
|
|
3119
|
+
"exclusiveMinimum": 0
|
|
3120
|
+
},
|
|
3121
|
+
{
|
|
3122
|
+
"type": "null"
|
|
3123
|
+
}
|
|
3124
|
+
]
|
|
3125
|
+
},
|
|
3126
|
+
"llm": {
|
|
3127
|
+
"type": "object",
|
|
3128
|
+
"properties": {
|
|
3129
|
+
"temperature": {
|
|
3130
|
+
"type": "number"
|
|
3131
|
+
},
|
|
3132
|
+
"maxTokens": {
|
|
3133
|
+
"type": "integer",
|
|
3134
|
+
"exclusiveMinimum": 0
|
|
3135
|
+
},
|
|
3136
|
+
"supportsJsonSchema": {
|
|
3137
|
+
"type": "boolean"
|
|
3138
|
+
},
|
|
3139
|
+
"extraParams": {
|
|
3140
|
+
"type": "object",
|
|
3141
|
+
"additionalProperties": {}
|
|
3142
|
+
},
|
|
3143
|
+
"contextLength": {
|
|
3144
|
+
"type": "integer",
|
|
3145
|
+
"exclusiveMinimum": 0
|
|
3146
|
+
},
|
|
3147
|
+
"enableThinking": {
|
|
3148
|
+
"type": "boolean"
|
|
3149
|
+
},
|
|
3150
|
+
"reasoningEffort": {
|
|
3151
|
+
"type": "string",
|
|
3152
|
+
"minLength": 1
|
|
3153
|
+
}
|
|
3154
|
+
},
|
|
3155
|
+
"additionalProperties": false
|
|
3079
3156
|
}
|
|
3080
3157
|
},
|
|
3081
|
-
"additionalProperties":
|
|
3158
|
+
"additionalProperties": false
|
|
3082
3159
|
}
|
|
3083
|
-
|
|
3084
|
-
"additionalProperties": true
|
|
3160
|
+
]
|
|
3085
3161
|
}
|
|
3086
3162
|
},
|
|
3087
3163
|
"additionalProperties": true
|
|
@@ -3121,6 +3197,10 @@
|
|
|
3121
3197
|
},
|
|
3122
3198
|
"enableThinking": {
|
|
3123
3199
|
"type": "boolean"
|
|
3200
|
+
},
|
|
3201
|
+
"reasoningEffort": {
|
|
3202
|
+
"type": "string",
|
|
3203
|
+
"minLength": 1
|
|
3124
3204
|
}
|
|
3125
3205
|
},
|
|
3126
3206
|
"additionalProperties": true
|
|
@@ -3368,6 +3448,10 @@
|
|
|
3368
3448
|
"enableThinking": {
|
|
3369
3449
|
"type": "boolean"
|
|
3370
3450
|
},
|
|
3451
|
+
"reasoningEffort": {
|
|
3452
|
+
"type": "string",
|
|
3453
|
+
"minLength": 1
|
|
3454
|
+
},
|
|
3371
3455
|
"supportsJsonSchema": {
|
|
3372
3456
|
"type": "boolean"
|
|
3373
3457
|
}
|
|
@@ -3467,6 +3551,10 @@
|
|
|
3467
3551
|
},
|
|
3468
3552
|
"enableThinking": {
|
|
3469
3553
|
"type": "boolean"
|
|
3554
|
+
},
|
|
3555
|
+
"reasoningEffort": {
|
|
3556
|
+
"type": "string",
|
|
3557
|
+
"minLength": 1
|
|
3470
3558
|
}
|
|
3471
3559
|
},
|
|
3472
3560
|
"additionalProperties": true
|
|
@@ -3683,57 +3771,71 @@
|
|
|
3683
3771
|
"type": "boolean"
|
|
3684
3772
|
},
|
|
3685
3773
|
"judgment": {
|
|
3686
|
-
"
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
"type": "string",
|
|
3690
|
-
"maxLength": 63,
|
|
3691
|
-
"pattern": "^(?!akm-)[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
|
|
3692
|
-
},
|
|
3693
|
-
"model": {
|
|
3694
|
-
"type": "string",
|
|
3695
|
-
"minLength": 1
|
|
3696
|
-
},
|
|
3697
|
-
"timeoutMs": {
|
|
3698
|
-
"anyOf": [
|
|
3699
|
-
{
|
|
3700
|
-
"type": "integer",
|
|
3701
|
-
"exclusiveMinimum": 0
|
|
3702
|
-
},
|
|
3703
|
-
{
|
|
3704
|
-
"type": "null"
|
|
3705
|
-
}
|
|
3706
|
-
]
|
|
3774
|
+
"anyOf": [
|
|
3775
|
+
{
|
|
3776
|
+
"type": "boolean"
|
|
3707
3777
|
},
|
|
3708
|
-
|
|
3778
|
+
{
|
|
3709
3779
|
"type": "object",
|
|
3710
3780
|
"properties": {
|
|
3711
|
-
"
|
|
3712
|
-
"type": "number"
|
|
3713
|
-
},
|
|
3714
|
-
"maxTokens": {
|
|
3715
|
-
"type": "integer",
|
|
3716
|
-
"exclusiveMinimum": 0
|
|
3717
|
-
},
|
|
3718
|
-
"supportsJsonSchema": {
|
|
3781
|
+
"enabled": {
|
|
3719
3782
|
"type": "boolean"
|
|
3720
3783
|
},
|
|
3721
|
-
"
|
|
3722
|
-
"type": "
|
|
3723
|
-
"
|
|
3784
|
+
"engine": {
|
|
3785
|
+
"type": "string",
|
|
3786
|
+
"maxLength": 63,
|
|
3787
|
+
"pattern": "^(?!akm-)[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
|
|
3724
3788
|
},
|
|
3725
|
-
"
|
|
3726
|
-
"type": "
|
|
3727
|
-
"
|
|
3789
|
+
"model": {
|
|
3790
|
+
"type": "string",
|
|
3791
|
+
"minLength": 1
|
|
3728
3792
|
},
|
|
3729
|
-
"
|
|
3730
|
-
"
|
|
3793
|
+
"timeoutMs": {
|
|
3794
|
+
"anyOf": [
|
|
3795
|
+
{
|
|
3796
|
+
"type": "integer",
|
|
3797
|
+
"exclusiveMinimum": 0
|
|
3798
|
+
},
|
|
3799
|
+
{
|
|
3800
|
+
"type": "null"
|
|
3801
|
+
}
|
|
3802
|
+
]
|
|
3803
|
+
},
|
|
3804
|
+
"llm": {
|
|
3805
|
+
"type": "object",
|
|
3806
|
+
"properties": {
|
|
3807
|
+
"temperature": {
|
|
3808
|
+
"type": "number"
|
|
3809
|
+
},
|
|
3810
|
+
"maxTokens": {
|
|
3811
|
+
"type": "integer",
|
|
3812
|
+
"exclusiveMinimum": 0
|
|
3813
|
+
},
|
|
3814
|
+
"supportsJsonSchema": {
|
|
3815
|
+
"type": "boolean"
|
|
3816
|
+
},
|
|
3817
|
+
"extraParams": {
|
|
3818
|
+
"type": "object",
|
|
3819
|
+
"additionalProperties": {}
|
|
3820
|
+
},
|
|
3821
|
+
"contextLength": {
|
|
3822
|
+
"type": "integer",
|
|
3823
|
+
"exclusiveMinimum": 0
|
|
3824
|
+
},
|
|
3825
|
+
"enableThinking": {
|
|
3826
|
+
"type": "boolean"
|
|
3827
|
+
},
|
|
3828
|
+
"reasoningEffort": {
|
|
3829
|
+
"type": "string",
|
|
3830
|
+
"minLength": 1
|
|
3831
|
+
}
|
|
3832
|
+
},
|
|
3833
|
+
"additionalProperties": false
|
|
3731
3834
|
}
|
|
3732
3835
|
},
|
|
3733
|
-
"additionalProperties":
|
|
3836
|
+
"additionalProperties": false
|
|
3734
3837
|
}
|
|
3735
|
-
|
|
3736
|
-
"additionalProperties": true
|
|
3838
|
+
]
|
|
3737
3839
|
},
|
|
3738
3840
|
"dueDays": {
|
|
3739
3841
|
"type": "integer",
|
|
@@ -3792,6 +3894,10 @@
|
|
|
3792
3894
|
},
|
|
3793
3895
|
"enableThinking": {
|
|
3794
3896
|
"type": "boolean"
|
|
3897
|
+
},
|
|
3898
|
+
"reasoningEffort": {
|
|
3899
|
+
"type": "string",
|
|
3900
|
+
"minLength": 1
|
|
3795
3901
|
}
|
|
3796
3902
|
},
|
|
3797
3903
|
"additionalProperties": true
|
|
@@ -3838,6 +3944,10 @@
|
|
|
3838
3944
|
},
|
|
3839
3945
|
"enableThinking": {
|
|
3840
3946
|
"type": "boolean"
|
|
3947
|
+
},
|
|
3948
|
+
"reasoningEffort": {
|
|
3949
|
+
"type": "string",
|
|
3950
|
+
"minLength": 1
|
|
3841
3951
|
}
|
|
3842
3952
|
},
|
|
3843
3953
|
"additionalProperties": true
|
|
@@ -3923,6 +4033,10 @@
|
|
|
3923
4033
|
},
|
|
3924
4034
|
"enableThinking": {
|
|
3925
4035
|
"type": "boolean"
|
|
4036
|
+
},
|
|
4037
|
+
"reasoningEffort": {
|
|
4038
|
+
"type": "string",
|
|
4039
|
+
"minLength": 1
|
|
3926
4040
|
}
|
|
3927
4041
|
},
|
|
3928
4042
|
"additionalProperties": true
|
|
@@ -4024,6 +4138,10 @@
|
|
|
4024
4138
|
},
|
|
4025
4139
|
"enableThinking": {
|
|
4026
4140
|
"type": "boolean"
|
|
4141
|
+
},
|
|
4142
|
+
"reasoningEffort": {
|
|
4143
|
+
"type": "string",
|
|
4144
|
+
"minLength": 1
|
|
4027
4145
|
}
|
|
4028
4146
|
},
|
|
4029
4147
|
"additionalProperties": true
|
|
@@ -4149,6 +4267,10 @@
|
|
|
4149
4267
|
},
|
|
4150
4268
|
"enableThinking": {
|
|
4151
4269
|
"type": "boolean"
|
|
4270
|
+
},
|
|
4271
|
+
"reasoningEffort": {
|
|
4272
|
+
"type": "string",
|
|
4273
|
+
"minLength": 1
|
|
4152
4274
|
}
|
|
4153
4275
|
},
|
|
4154
4276
|
"additionalProperties": true
|
|
@@ -4222,6 +4344,10 @@
|
|
|
4222
4344
|
},
|
|
4223
4345
|
"enableThinking": {
|
|
4224
4346
|
"type": "boolean"
|
|
4347
|
+
},
|
|
4348
|
+
"reasoningEffort": {
|
|
4349
|
+
"type": "string",
|
|
4350
|
+
"minLength": 1
|
|
4225
4351
|
}
|
|
4226
4352
|
},
|
|
4227
4353
|
"additionalProperties": true
|
|
@@ -4297,6 +4423,10 @@
|
|
|
4297
4423
|
},
|
|
4298
4424
|
"enableThinking": {
|
|
4299
4425
|
"type": "boolean"
|
|
4426
|
+
},
|
|
4427
|
+
"reasoningEffort": {
|
|
4428
|
+
"type": "string",
|
|
4429
|
+
"minLength": 1
|
|
4300
4430
|
}
|
|
4301
4431
|
},
|
|
4302
4432
|
"additionalProperties": true
|
|
@@ -4393,6 +4523,10 @@
|
|
|
4393
4523
|
},
|
|
4394
4524
|
"enableThinking": {
|
|
4395
4525
|
"type": "boolean"
|
|
4526
|
+
},
|
|
4527
|
+
"reasoningEffort": {
|
|
4528
|
+
"type": "string",
|
|
4529
|
+
"minLength": 1
|
|
4396
4530
|
}
|
|
4397
4531
|
},
|
|
4398
4532
|
"additionalProperties": true
|
|
@@ -4449,6 +4583,10 @@
|
|
|
4449
4583
|
},
|
|
4450
4584
|
"enableThinking": {
|
|
4451
4585
|
"type": "boolean"
|
|
4586
|
+
},
|
|
4587
|
+
"reasoningEffort": {
|
|
4588
|
+
"type": "string",
|
|
4589
|
+
"minLength": 1
|
|
4452
4590
|
}
|
|
4453
4591
|
},
|
|
4454
4592
|
"additionalProperties": true
|
|
@@ -4490,57 +4628,71 @@
|
|
|
4490
4628
|
"type": "boolean"
|
|
4491
4629
|
},
|
|
4492
4630
|
"judgment": {
|
|
4493
|
-
"
|
|
4494
|
-
|
|
4495
|
-
|
|
4496
|
-
"type": "string",
|
|
4497
|
-
"maxLength": 63,
|
|
4498
|
-
"pattern": "^(?!akm-)[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
|
|
4499
|
-
},
|
|
4500
|
-
"model": {
|
|
4501
|
-
"type": "string",
|
|
4502
|
-
"minLength": 1
|
|
4503
|
-
},
|
|
4504
|
-
"timeoutMs": {
|
|
4505
|
-
"anyOf": [
|
|
4506
|
-
{
|
|
4507
|
-
"type": "integer",
|
|
4508
|
-
"exclusiveMinimum": 0
|
|
4509
|
-
},
|
|
4510
|
-
{
|
|
4511
|
-
"type": "null"
|
|
4512
|
-
}
|
|
4513
|
-
]
|
|
4631
|
+
"anyOf": [
|
|
4632
|
+
{
|
|
4633
|
+
"type": "boolean"
|
|
4514
4634
|
},
|
|
4515
|
-
|
|
4635
|
+
{
|
|
4516
4636
|
"type": "object",
|
|
4517
4637
|
"properties": {
|
|
4518
|
-
"
|
|
4519
|
-
"type": "number"
|
|
4520
|
-
},
|
|
4521
|
-
"maxTokens": {
|
|
4522
|
-
"type": "integer",
|
|
4523
|
-
"exclusiveMinimum": 0
|
|
4524
|
-
},
|
|
4525
|
-
"supportsJsonSchema": {
|
|
4638
|
+
"enabled": {
|
|
4526
4639
|
"type": "boolean"
|
|
4527
4640
|
},
|
|
4528
|
-
"
|
|
4529
|
-
"type": "
|
|
4530
|
-
"
|
|
4641
|
+
"engine": {
|
|
4642
|
+
"type": "string",
|
|
4643
|
+
"maxLength": 63,
|
|
4644
|
+
"pattern": "^(?!akm-)[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
|
|
4531
4645
|
},
|
|
4532
|
-
"
|
|
4533
|
-
"type": "
|
|
4534
|
-
"
|
|
4646
|
+
"model": {
|
|
4647
|
+
"type": "string",
|
|
4648
|
+
"minLength": 1
|
|
4535
4649
|
},
|
|
4536
|
-
"
|
|
4537
|
-
"
|
|
4650
|
+
"timeoutMs": {
|
|
4651
|
+
"anyOf": [
|
|
4652
|
+
{
|
|
4653
|
+
"type": "integer",
|
|
4654
|
+
"exclusiveMinimum": 0
|
|
4655
|
+
},
|
|
4656
|
+
{
|
|
4657
|
+
"type": "null"
|
|
4658
|
+
}
|
|
4659
|
+
]
|
|
4660
|
+
},
|
|
4661
|
+
"llm": {
|
|
4662
|
+
"type": "object",
|
|
4663
|
+
"properties": {
|
|
4664
|
+
"temperature": {
|
|
4665
|
+
"type": "number"
|
|
4666
|
+
},
|
|
4667
|
+
"maxTokens": {
|
|
4668
|
+
"type": "integer",
|
|
4669
|
+
"exclusiveMinimum": 0
|
|
4670
|
+
},
|
|
4671
|
+
"supportsJsonSchema": {
|
|
4672
|
+
"type": "boolean"
|
|
4673
|
+
},
|
|
4674
|
+
"extraParams": {
|
|
4675
|
+
"type": "object",
|
|
4676
|
+
"additionalProperties": {}
|
|
4677
|
+
},
|
|
4678
|
+
"contextLength": {
|
|
4679
|
+
"type": "integer",
|
|
4680
|
+
"exclusiveMinimum": 0
|
|
4681
|
+
},
|
|
4682
|
+
"enableThinking": {
|
|
4683
|
+
"type": "boolean"
|
|
4684
|
+
},
|
|
4685
|
+
"reasoningEffort": {
|
|
4686
|
+
"type": "string",
|
|
4687
|
+
"minLength": 1
|
|
4688
|
+
}
|
|
4689
|
+
},
|
|
4690
|
+
"additionalProperties": false
|
|
4538
4691
|
}
|
|
4539
4692
|
},
|
|
4540
|
-
"additionalProperties":
|
|
4693
|
+
"additionalProperties": false
|
|
4541
4694
|
}
|
|
4542
|
-
|
|
4543
|
-
"additionalProperties": true
|
|
4695
|
+
]
|
|
4544
4696
|
}
|
|
4545
4697
|
},
|
|
4546
4698
|
"additionalProperties": true
|
|
@@ -4580,6 +4732,10 @@
|
|
|
4580
4732
|
},
|
|
4581
4733
|
"enableThinking": {
|
|
4582
4734
|
"type": "boolean"
|
|
4735
|
+
},
|
|
4736
|
+
"reasoningEffort": {
|
|
4737
|
+
"type": "string",
|
|
4738
|
+
"minLength": 1
|
|
4583
4739
|
}
|
|
4584
4740
|
},
|
|
4585
4741
|
"additionalProperties": true
|