@kody-ade/kody-engine-lite 0.1.57 → 0.1.59
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/dist/bin/cli.js +692 -295
- package/kody.config.schema.json +6 -1
- package/package.json +1 -1
package/kody.config.schema.json
CHANGED
|
@@ -125,9 +125,14 @@
|
|
|
125
125
|
},
|
|
126
126
|
"additionalProperties": false
|
|
127
127
|
},
|
|
128
|
+
"provider": {
|
|
129
|
+
"type": "string",
|
|
130
|
+
"description": "LLM provider name. When set (and not 'anthropic'), engine auto-starts LiteLLM proxy and routes model calls to this provider. modelMap values should be the provider's model names.",
|
|
131
|
+
"examples": ["anthropic", "minimax", "openai", "google"]
|
|
132
|
+
},
|
|
128
133
|
"litellmUrl": {
|
|
129
134
|
"type": "string",
|
|
130
|
-
"description": "
|
|
135
|
+
"description": "(Deprecated) Use 'provider' instead. LiteLLM proxy URL for manual setup.",
|
|
131
136
|
"examples": ["http://localhost:4000"]
|
|
132
137
|
},
|
|
133
138
|
"usePerStageRouting": {
|