docs.rs failed to build voxora-registry-0.4.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
voxora-registry-0.4.1
voxora-registry
Central model registry for voxora (ASR-specific).
Owns the answer to "given a model id, give me the engine descriptor
- the exact on-disk file". Before this crate, that answer was
distributed across
voxora-hf(cache key),voxora-whisper(lex-sort over*.bin), andvoxora-cli(heuristic). Now it lives here.
Structural fix for voxora#79
(ggerganov/whisper.cpp/ggml-large-v3.bin incorrectly resolving to
ggml-base.bin): ModelDir::entry, populated by voxora-hf 0.1.2
and surfaced through Registry::resolve, names the exact file.
Consumers no longer need to lex-sort.
Phase 0 surface
- [
ModelId::parse] — strict parser fororg/repo,org/repo/file,/local/path,./local-path. - [
Registry::resolve] →(EngineDescriptor, ModelDir). - [
builtin_whisper_descriptor] / [builtin_qwen3asr_descriptor] default descriptors. - [
CacheManifest] —.voxora-manifest.jsonsidecar. - [
hf::hf_registry] convenience builder (behind thehffeature).
ASR-specific: descriptors model only ASR engines (Whisper,
Qwen3-Asr). Adding parakeet, voxtral, or granite-speech is a
0.2.x change.