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.
@@ -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
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  getExtForLang,
4
4
  serializeToYaml
5
- } from "./chunk-JQ5CPV6P.js";
5
+ } from "./chunk-C6N5GXSK.js";
6
6
  import "./chunk-AXNRPVLE.js";
7
7
  export {
8
8
  getExtForLang,
package/dist/index.d.ts CHANGED
@@ -76,6 +76,7 @@ interface SubChatEvent {
76
76
  interface ModelInfo {
77
77
  id: string;
78
78
  name: string;
79
+ providerId?: string;
79
80
  }
80
81
  /** Minimal app info from /v1/apps */
81
82
  interface AppInfo {
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import {
7
7
  getExtForLang,
8
8
  parseNewChatSuggestionText,
9
9
  serializeToYaml
10
- } from "./chunk-JQ5CPV6P.js";
10
+ } from "./chunk-C6N5GXSK.js";
11
11
  import "./chunk-AXNRPVLE.js";
12
12
  export {
13
13
  MATE_NAMES,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmates",
3
- "version": "0.11.0-alpha.21",
3
+ "version": "0.11.0-alpha.22",
4
4
  "description": "OpenMates CLI and SDK",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",