@dicta-asr/doubaoime-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 ADDED
@@ -0,0 +1,12 @@
1
+ # doubaoime-asr
2
+
3
+ Installable `dicta` provider package for Doubao IME ASR.
4
+
5
+ The package is designed to be installed with:
6
+
7
+ ```bash
8
+ dicta provider install @dicta-asr/doubaoime-asr
9
+ ```
10
+
11
+ The install command downloads or receives a package tarball and unpacks it
12
+ directly into Dicta's provider directory. It does not run `npm install`.
package/bin/.gitkeep ADDED
@@ -0,0 +1 @@
1
+
Binary file
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@dicta-asr/doubaoime-asr",
3
+ "version": "0.1.0",
4
+ "description": "Dicta provider package for Doubao IME ASR",
5
+ "keywords": [
6
+ "asr",
7
+ "dicta",
8
+ "dicta-provider",
9
+ "doubao",
10
+ "ime",
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/doubaoime-asr"
24
+ },
25
+ "files": [
26
+ "provider.toml",
27
+ "bin/",
28
+ "README.md"
29
+ ],
30
+ "os": [
31
+ "darwin"
32
+ ],
33
+ "cpu": [
34
+ "arm64"
35
+ ],
36
+ "publishConfig": {
37
+ "access": "public"
38
+ }
39
+ }
package/provider.toml ADDED
@@ -0,0 +1,28 @@
1
+ id = "doubaoime-asr"
2
+ name = "Doubao IME ASR"
3
+ version = "0.1.0"
4
+ protocol = "dicta-provider-jsonl-v1"
5
+ command = "bin/dicta-provider-doubaoime-asr"
6
+ model = "doubaoime-asr"
7
+ notes = [
8
+ "Private installable provider package. The main dicta CLI should not bundle this implementation.",
9
+ "Requires network access to Doubao IME ASR endpoints."
10
+ ]
11
+
12
+ [batch]
13
+ file = true
14
+ streaming = false
15
+ requires_network = true
16
+
17
+ [live]
18
+ mode = "chunked"
19
+ mic = true
20
+ speaker = false
21
+ streaming_audio = false
22
+ partial_results = false
23
+ finalized_results = true
24
+ translation = false
25
+ voice_processing = false
26
+ device_selection = false
27
+ requires_network = true
28
+ expected_latency_ms = 5000