Skip to content

Commit 7238b6e

Browse files
streamkit-botstreamkit-devinstreamer45
committed
chore(registry): publish marketplace registry update (#283)
* chore(registry): publish marketplace registry update * fix(marketplace): prevent plugin releases from becoming latest on GitHub Signed-off-by: StreamKit Devin <devin@streamkit.dev> Co-Authored-By: Claudio Costa <cstcld91@gmail.com> --------- Signed-off-by: StreamKit Devin <devin@streamkit.dev> Co-authored-by: StreamKit Devin <devin@streamkit.dev> Co-authored-by: Claudio Costa <cstcld91@gmail.com>
1 parent a6583e8 commit 7238b6e

File tree

7 files changed

+151
-0
lines changed

7 files changed

+151
-0
lines changed

.github/workflows/marketplace-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ jobs:
9797
'--target', os.environ.get('GITHUB_SHA', 'HEAD'),
9898
'--title', release_name,
9999
'--notes', f'Plugin bundle for {name} v{version}.',
100+
'--latest=false',
100101
bundle,
101102
]
102103
if is_prerelease:

dist/registry/index.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,20 @@
9595
}
9696
]
9797
},
98+
{
99+
"id": "parakeet",
100+
"name": "Parakeet TDT",
101+
"description": "Fast speech-to-text using NVIDIA Parakeet TDT via sherpa-onnx",
102+
"latest": "0.1.0",
103+
"versions": [
104+
{
105+
"version": "0.1.0",
106+
"manifest_url": "https://streamkit.dev/registry/plugins/parakeet/0.1.0/manifest.json",
107+
"signature_url": "https://streamkit.dev/registry/plugins/parakeet/0.1.0/manifest.minisig",
108+
"published_at": "2026-04-10"
109+
}
110+
]
111+
},
98112
{
99113
"id": "piper",
100114
"name": "Piper",
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"schema_version": 1,
3+
"id": "parakeet",
4+
"name": "Parakeet TDT",
5+
"version": "0.1.0",
6+
"node_kind": "parakeet",
7+
"kind": "native",
8+
"description": "Fast speech-to-text using NVIDIA Parakeet TDT via sherpa-onnx",
9+
"license": "MPL-2.0",
10+
"homepage": "https://huggingface.co/nvidia/parakeet-tdt-0.6b-v2",
11+
"entrypoint": "libparakeet.so",
12+
"bundle": {
13+
"url": "https://github.com/streamer45/streamkit/releases/download/plugin-parakeet-v0.1.0/parakeet-0.1.0-bundle.tar.zst",
14+
"sha256": "9ca3cd97ba3c665517dd1319f8492c15b6b97549231577b640bbbc0f71aa60c3",
15+
"size_bytes": 15635462
16+
},
17+
"models": [
18+
{
19+
"id": "parakeet-tdt-0.6b-v2-int8",
20+
"name": "Parakeet TDT 0.6B v2 (English, INT8)",
21+
"default": true,
22+
"source": "huggingface",
23+
"repo_id": "streamkit/parakeet-models",
24+
"revision": "main",
25+
"files": [
26+
"encoder.int8.onnx",
27+
"decoder.int8.onnx",
28+
"joiner.int8.onnx",
29+
"tokens.txt"
30+
],
31+
"expected_size_bytes": 661190513,
32+
"license": "CC-BY-4.0",
33+
"license_url": "https://huggingface.co/nvidia/parakeet-tdt-0.6b-v2",
34+
"file_checksums": {
35+
"encoder.int8.onnx": "a32b12d17bbbc309d0686fbbcc2987b5e9b8333a7da83fa6b089f0a2acd651ab",
36+
"decoder.int8.onnx": "b6bb64963457237b900e496ee9994b59294526439fbcc1fecf705b31a15c6b4e",
37+
"joiner.int8.onnx": "7946164367946e7f9f29a122407c3252b680dbae9a51343eb2488d057c3c43d2",
38+
"tokens.txt": "ec182b70dd42113aff6c5372c75cac58c952443eb22322f57bbd7f53977d497d"
39+
}
40+
},
41+
{
42+
"id": "silero-vad",
43+
"name": "Silero VAD (v6.2)",
44+
"default": true,
45+
"source": "huggingface",
46+
"repo_id": "streamkit/parakeet-models",
47+
"revision": "main",
48+
"files": [
49+
"silero_vad.onnx"
50+
],
51+
"expected_size_bytes": 2327524,
52+
"license": "MIT",
53+
"license_url": "https://github.com/snakers4/silero-vad/blob/master/LICENSE",
54+
"sha256": "1a153a22f4509e292a94e67d6f9b85e8deb25b4988682b7e174c65279d8788e3"
55+
}
56+
]
57+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
untrusted comment: signature from minisign secret key
2+
RUQ/85JEqYXEgb3NHkk8EDvKfvijFiOhUMrmR97Tqb5NEYf3kTZTK+U5IHo10l0lOfInZaLjscG7wQ6OqfgO6gaRAnqlUzMXmgo=
3+
trusted comment: timestamp:1775850398 file:manifest.json hashed
4+
BMn5YTOa/ekLGbyRUiXr5cnwpYr8NrU+bQrKORovVYFIUtYDDwUyzvELqGjs/tShSlT8Ws7UVtBDdSVdJlOxAg==

docs/public/registry/index.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,20 @@
9595
}
9696
]
9797
},
98+
{
99+
"id": "parakeet",
100+
"name": "Parakeet TDT",
101+
"description": "Fast speech-to-text using NVIDIA Parakeet TDT via sherpa-onnx",
102+
"latest": "0.1.0",
103+
"versions": [
104+
{
105+
"version": "0.1.0",
106+
"manifest_url": "https://streamkit.dev/registry/plugins/parakeet/0.1.0/manifest.json",
107+
"signature_url": "https://streamkit.dev/registry/plugins/parakeet/0.1.0/manifest.minisig",
108+
"published_at": "2026-04-10"
109+
}
110+
]
111+
},
98112
{
99113
"id": "piper",
100114
"name": "Piper",
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"schema_version": 1,
3+
"id": "parakeet",
4+
"name": "Parakeet TDT",
5+
"version": "0.1.0",
6+
"node_kind": "parakeet",
7+
"kind": "native",
8+
"description": "Fast speech-to-text using NVIDIA Parakeet TDT via sherpa-onnx",
9+
"license": "MPL-2.0",
10+
"homepage": "https://huggingface.co/nvidia/parakeet-tdt-0.6b-v2",
11+
"entrypoint": "libparakeet.so",
12+
"bundle": {
13+
"url": "https://github.com/streamer45/streamkit/releases/download/plugin-parakeet-v0.1.0/parakeet-0.1.0-bundle.tar.zst",
14+
"sha256": "9ca3cd97ba3c665517dd1319f8492c15b6b97549231577b640bbbc0f71aa60c3",
15+
"size_bytes": 15635462
16+
},
17+
"models": [
18+
{
19+
"id": "parakeet-tdt-0.6b-v2-int8",
20+
"name": "Parakeet TDT 0.6B v2 (English, INT8)",
21+
"default": true,
22+
"source": "huggingface",
23+
"repo_id": "streamkit/parakeet-models",
24+
"revision": "main",
25+
"files": [
26+
"encoder.int8.onnx",
27+
"decoder.int8.onnx",
28+
"joiner.int8.onnx",
29+
"tokens.txt"
30+
],
31+
"expected_size_bytes": 661190513,
32+
"license": "CC-BY-4.0",
33+
"license_url": "https://huggingface.co/nvidia/parakeet-tdt-0.6b-v2",
34+
"file_checksums": {
35+
"encoder.int8.onnx": "a32b12d17bbbc309d0686fbbcc2987b5e9b8333a7da83fa6b089f0a2acd651ab",
36+
"decoder.int8.onnx": "b6bb64963457237b900e496ee9994b59294526439fbcc1fecf705b31a15c6b4e",
37+
"joiner.int8.onnx": "7946164367946e7f9f29a122407c3252b680dbae9a51343eb2488d057c3c43d2",
38+
"tokens.txt": "ec182b70dd42113aff6c5372c75cac58c952443eb22322f57bbd7f53977d497d"
39+
}
40+
},
41+
{
42+
"id": "silero-vad",
43+
"name": "Silero VAD (v6.2)",
44+
"default": true,
45+
"source": "huggingface",
46+
"repo_id": "streamkit/parakeet-models",
47+
"revision": "main",
48+
"files": [
49+
"silero_vad.onnx"
50+
],
51+
"expected_size_bytes": 2327524,
52+
"license": "MIT",
53+
"license_url": "https://github.com/snakers4/silero-vad/blob/master/LICENSE",
54+
"sha256": "1a153a22f4509e292a94e67d6f9b85e8deb25b4988682b7e174c65279d8788e3"
55+
}
56+
]
57+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
untrusted comment: signature from minisign secret key
2+
RUQ/85JEqYXEgb3NHkk8EDvKfvijFiOhUMrmR97Tqb5NEYf3kTZTK+U5IHo10l0lOfInZaLjscG7wQ6OqfgO6gaRAnqlUzMXmgo=
3+
trusted comment: timestamp:1775850398 file:manifest.json hashed
4+
BMn5YTOa/ekLGbyRUiXr5cnwpYr8NrU+bQrKORovVYFIUtYDDwUyzvELqGjs/tShSlT8Ws7UVtBDdSVdJlOxAg==

0 commit comments

Comments
 (0)