@dicta-asr/qianwenime-asr 0.1.0
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 +25 -0
- package/bin/.gitkeep +1 -0
- package/bin/dicta-provider-qianwenime-asr +0 -0
- package/lib/macos-aarch64/.gitkeep +1 -0
- package/lib/macos-aarch64/libQianwenShellEmbedded.dylib +0 -0
- package/lib/macos-aarch64/libdicta_qianwen_wsg_shim.dylib +0 -0
- package/lib/macos-aarch64/libqianwen_unet_runtime.dylib +0 -0
- package/lib/macos-aarch64/libshell_ffi.dylib +0 -0
- package/lib/macos-aarch64/libunet.dylib +0 -0
- package/package.json +40 -0
- package/provider.toml +27 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# qianwenime-asr
|
|
2
|
+
|
|
3
|
+
Private installable `dicta` provider package for Qianwen IME ASR.
|
|
4
|
+
|
|
5
|
+
Expected macOS arm64 package layout:
|
|
6
|
+
|
|
7
|
+
```text
|
|
8
|
+
provider.toml
|
|
9
|
+
package.json
|
|
10
|
+
bin/dicta-provider-qianwenime-asr
|
|
11
|
+
lib/macos-aarch64/libQianwenShellEmbedded.dylib
|
|
12
|
+
lib/macos-aarch64/libshell_ffi.dylib
|
|
13
|
+
lib/macos-aarch64/libqianwen_unet_runtime.dylib
|
|
14
|
+
lib/macos-aarch64/libunet.dylib
|
|
15
|
+
lib/macos-aarch64/libdicta_qianwen_wsg_shim.dylib
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Install with:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
dicta provider install @dicta-asr/qianwenime-asr
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
The main public `dicta` repo should not need to know about or ship these private
|
|
25
|
+
dylibs.
|
package/bin/.gitkeep
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dicta-asr/qianwenime-asr",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Dicta provider package for Qianwen IME ASR",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"asr",
|
|
7
|
+
"dicta",
|
|
8
|
+
"dicta-provider",
|
|
9
|
+
"ime",
|
|
10
|
+
"qianwen",
|
|
11
|
+
"speech-to-text",
|
|
12
|
+
"transcription"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/kingsword09/dicta-asr#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/kingsword09/dicta-asr/issues"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"author": "Kingsword kingsword09 <kingsword09@gmail.com>",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/kingsword09/dicta-asr.git",
|
|
23
|
+
"directory": "packages/qianwenime-asr"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"provider.toml",
|
|
27
|
+
"bin/",
|
|
28
|
+
"lib/",
|
|
29
|
+
"README.md"
|
|
30
|
+
],
|
|
31
|
+
"os": [
|
|
32
|
+
"darwin"
|
|
33
|
+
],
|
|
34
|
+
"cpu": [
|
|
35
|
+
"arm64"
|
|
36
|
+
],
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
}
|
|
40
|
+
}
|
package/provider.toml
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
id = "qianwenime-asr"
|
|
2
|
+
name = "Qianwen IME ASR"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
protocol = "dicta-provider-jsonl-v1"
|
|
5
|
+
command = "bin/dicta-provider-qianwenime-asr"
|
|
6
|
+
model = "qianwenime-asr"
|
|
7
|
+
notes = [
|
|
8
|
+
"Private macOS provider package. It owns Qianwen private dylibs instead of bundling them in the public dicta CLI.",
|
|
9
|
+
"First target is macOS arm64."
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
[batch]
|
|
13
|
+
file = false
|
|
14
|
+
streaming = false
|
|
15
|
+
requires_network = true
|
|
16
|
+
|
|
17
|
+
[live]
|
|
18
|
+
mode = "streaming"
|
|
19
|
+
mic = true
|
|
20
|
+
speaker = false
|
|
21
|
+
streaming_audio = true
|
|
22
|
+
partial_results = true
|
|
23
|
+
finalized_results = true
|
|
24
|
+
translation = false
|
|
25
|
+
voice_processing = false
|
|
26
|
+
device_selection = false
|
|
27
|
+
requires_network = true
|