qlogicagent 2.14.3 → 2.14.4

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.
@@ -70,6 +70,14 @@ export declare function refreshRegistryFromLlmrouterApiKey(registry: ModelRegist
70
70
  configPort?: ConfigPort;
71
71
  forceCatalog?: boolean;
72
72
  }): Promise<ModelEntry[]>;
73
+ /**
74
+ * Hydrate the registry with the user's PUBLISHED llmrouter models (/v1/models) when an inference
75
+ * key is available — the set they can actually call. Falls back to the full discovery catalog only
76
+ * when no key is configured yet (e.g. pre-sign-in) so the UI is never empty. This is the entry point
77
+ * the startup/settings hydration uses; it keeps the 600+ discovery catalog (and its direct-provider
78
+ * dual-registration) out of the user-facing model list.
79
+ */
80
+ export declare function refreshRegistryFromLlmrouterPublished(registry: ModelRegistry, configPort?: ConfigPort, options?: CatalogFetchOptions): Promise<ModelEntry[]>;
73
81
  export declare function resetLlmrouterCatalogClientCache(): void;
74
82
  /**
75
83
  * 零配置默认模型:全新安装(无 textGeneration binding)且网关注入了设备账号推理 key 时,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qlogicagent",
3
- "version": "2.14.3",
3
+ "version": "2.14.4",
4
4
  "description": "XiaozhiClaw Agent CLI — subprocess architecture (JSON-RPC over stdio)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",