Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions model_specs/miocodec.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,60 @@
"speaker_reference"
]
},
"options": {
"request": [],
"session": [
{
"name": "weight_type",
"type": "enum",
"description": "Codec weight storage type; default f32.",
"preset": "weight_type_full",
"required": false,
"default": "f32"
},
{
"name": "weight_context_mb",
"type": "int",
"description": "Codec weight descriptor context size in MiB; default 256.",
"required": false,
"min": 1,
"default": 256
},
{
"name": "constant_context_mb",
"type": "int",
"description": "Reusable constant context size in MiB; default 256.",
"required": false,
"min": 1,
"default": 256
},
{
"name": "content_graph_arena_mb",
"type": "int",
"description": "Content encoder graph arena size in MiB; default 512.",
"required": false,
"min": 1,
"default": 512
},
{
"name": "global_graph_arena_mb",
"type": "int",
"description": "Global encoder graph arena size in MiB; default 256.",
"required": false,
"min": 1,
"default": 256
},
{
"name": "wave_graph_arena_mb",
"type": "int",
"description": "Wave decoder graph arena size in MiB; default 512.",
"required": false,
"min": 1,
"default": 512
}
],
"load": []
},
"runtime": {
"tags": [
"gguf"
Expand Down
2 changes: 1 addition & 1 deletion model_specs/mms_forced_aligner.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
{
"name": "return_timestamps",
"type": "bool",
"description": "Request word timestamps in the result; set automatically by --words-out.",
"description": "Accepted for cross-model compatibility (--words-out sets it) and ignored: the forced aligner always returns word timestamps.",
"required": false,
"default": true
}
Expand Down
6 changes: 6 additions & 0 deletions model_specs/parakeet_tdt.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@
},
"options": {
"request": [
{
"name": "language",
"type": "string",
"description": "Transcription language from the OpenAI-compatible request field. Accepted for API compatibility; Parakeet TDT detects the language itself and does not use this value (see keep_language_tags).",
"required": false
},
{
"name": "max_tokens",
"type": "int",
Expand Down
57 changes: 57 additions & 0 deletions model_specs/qwen3_forced_aligner.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,63 @@
"required": false,
"default": false
}
],
"session": [
{
"name": "weight_type",
"type": "enum",
"description": "Fallback weight storage type for the thinker; default native.",
"preset": "weight_type_full",
"required": false,
"default": "native"
},
{
"name": "thinker_weight_type",
"type": "enum",
"description": "Thinker matmul weight storage type; defaults to weight_type when set, otherwise native.",
"preset": "weight_type_full",
"required": false
},
{
"name": "audio_encoder_weight_type",
"type": "enum",
"description": "Audio encoder weight storage type; default native.",
"preset": "weight_type_conv",
"required": false,
"default": "native"
},
{
"name": "audio_encoder_graph_arena_mb",
"type": "int",
"description": "Audio encoder graph arena size in MiB; default 128.",
"required": false,
"min": 1,
"default": 128
},
{
"name": "thinker_prefill_graph_arena_mb",
"type": "int",
"description": "Thinker prefill graph arena size in MiB; default 256.",
"required": false,
"min": 1,
"default": 256
},
{
"name": "thinker_decode_graph_arena_mb",
"type": "int",
"description": "Thinker decode graph arena size in MiB; default 256.",
"required": false,
"min": 1,
"default": 256
},
{
"name": "thinker_weight_context_mb",
"type": "int",
"description": "Thinker weight descriptor context size in MiB; default 64.",
"required": false,
"min": 1,
"default": 64
}
]
},
"runtime": {
Expand Down
3 changes: 2 additions & 1 deletion model_specs/sense_asr.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,11 @@
{
"name": "audio_chunk_mode",
"type": "enum",
"description": "Audio chunking mode: auto, fixed, or none.",
"description": "Audio chunking mode: auto, fixed, vad, or none.",
"values": [
"auto",
"fixed",
"vad",
"none"
],
"required": false,
Expand Down
Loading