@h-ai/ai 0.1.0-alpha.50 → 0.1.0-alpha.51
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/README.md +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -316,7 +316,7 @@ return playable.data
|
|
|
316
316
|
|
|
317
317
|
浏览器 / 移动端通过 `@h-ai/serv` 暴露的统一语音 WebSocket 入口访问,`@h-ai/ai/client` 提供与 Node 端一致的 `audio.*` API(传输细节内部隐藏)。浏览器客户端严格区分正常结束、取消(`AUDIO_CANCELLED`)与异常断连(`AUDIO_CONNECTION_FAILED`):取消或在 `end` 前断连会抛出对应领域错误码,`synthesize` 不会把未完成的部分音频当作成功结果返回。
|
|
318
318
|
|
|
319
|
-
> 自托管模型服务(faster-whisper / IndexTTS / Qwen3-4B 的 CPU/GPU Docker 镜像、权重下载与离线打包)见 [`models/`](./models/README.md)。镜像与权重下载优先使用 ModelScope
|
|
319
|
+
> 自托管模型服务(faster-whisper / IndexTTS / Qwen3-4B 的 CPU/GPU Docker 镜像、权重下载与离线打包)见 [`models/`](./models/README.md)。镜像与权重下载优先使用 ModelScope,自动回退 HuggingFace 镜像。
|
|
320
320
|
|
|
321
321
|
### 文生图(Image)
|
|
322
322
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-ai/ai",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.0-alpha.
|
|
4
|
+
"version": "0.1.0-alpha.51",
|
|
5
5
|
"description": "Hai Framework AI module (LLM, MCP, tools, and clients).",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"exports": {
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"openai": "^6.17.0",
|
|
34
34
|
"ws": "^8.18.3",
|
|
35
35
|
"zod": "^4.4.3",
|
|
36
|
-
"@h-ai/api-contract": "0.1.0-alpha.
|
|
37
|
-
"@h-ai/core": "0.1.0-alpha.
|
|
38
|
-
"@h-ai/
|
|
39
|
-
"@h-ai/
|
|
40
|
-
"@h-ai/
|
|
36
|
+
"@h-ai/api-contract": "0.1.0-alpha.51",
|
|
37
|
+
"@h-ai/core": "0.1.0-alpha.51",
|
|
38
|
+
"@h-ai/vecdb": "0.1.0-alpha.51",
|
|
39
|
+
"@h-ai/datapipe": "0.1.0-alpha.51",
|
|
40
|
+
"@h-ai/reldb": "0.1.0-alpha.51"
|
|
41
41
|
},
|
|
42
42
|
"optionalDependencies": {
|
|
43
43
|
"better-sqlite3": "^12.6.2"
|