openmates 0.11.0-alpha.21 → 0.11.0-alpha.22
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/{chunk-JQ5CPV6P.js → chunk-C6N5GXSK.js} +2 -1
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -1206,6 +1206,7 @@ var MODEL_ALIASES = {
|
|
|
1206
1206
|
fast: "qwen3-235b-a22b-2507"
|
|
1207
1207
|
};
|
|
1208
1208
|
var CHAT_MODELS = [
|
|
1209
|
+
{ id: "claude-fable-5", name: "Claude Fable 5", providerId: "anthropic" },
|
|
1209
1210
|
{ id: "claude-opus-4-7", name: "Claude Opus 4.7" },
|
|
1210
1211
|
{ id: "claude-opus-4-6", name: "Claude Opus 4.6" },
|
|
1211
1212
|
{ id: "claude-sonnet-4-6", name: "Claude Sonnet 4.6" },
|
|
@@ -1274,7 +1275,7 @@ function resolveToken(token, context) {
|
|
|
1274
1275
|
return {
|
|
1275
1276
|
original: `@${token}`,
|
|
1276
1277
|
type: "model",
|
|
1277
|
-
wireSyntax: `@ai-model:${model.id}`,
|
|
1278
|
+
wireSyntax: `@ai-model:${model.id}${model.providerId ? `:${model.providerId}` : ""}`,
|
|
1278
1279
|
displayName: `@${model.name.replace(/\s+/g, "-")}`
|
|
1279
1280
|
};
|
|
1280
1281
|
}
|
package/dist/cli.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED