aximo
Offline-first speech-to-text API for local and private deployments
File Explorer
- config.toml
- ci.yml
- container.yml
- image-security.yml
- security.yml
- dependabot.yml
- coverage.json
- aximo.example.toml
- aximo.local.toml
- capabilities.rs
- health.rs
- mod.rs
- transcriptions.rs
- handler.rs
- mod.rs
- protocol.rs
- app.rs
- config.rs
- docs.rs
- engine_runtime.rs
- inference_task.rs
- lib.rs
- main.rs
- metrics.rs
- runtime.rs
- runtime_health.rs
- aximo-recorder.css
- aximo-recorder.js
- index.html
- blocking_inference.rs
- capabilities_api.rs
- config_inference.rs
- docs_api.rs
- health_api.rs
- metrics_api.rs
- realtime_protocol.rs
- runtime_config.rs
- transcriptions_api.rs
- workspace_smoke.rs
- Cargo.toml
- decode.rs
- lib.rs
- media_type.rs
- normalize.rs
- corrupt.mp3
- tone-16k-mono.flac
- tone-16k-mono.m4a
- tone-16k-mono.mp3
- tone-16k-mono.wav
- tone-44k-stereo.wav
- decode.rs
- media_type.rs
- Cargo.toml
- lib.rs
- realtime.rs
- scheduler.rs
- short_audio.rs
- realtime.rs
- scheduler.rs
- Cargo.toml
- engine.rs
- lib.rs
- runtime.rs
- runtime_loader.rs
- Cargo.toml
- configmap.yaml
- deployment.yaml
- kustomization.yaml
- networkpolicy.yaml
- pdb.yaml
- pvc.yaml
- service.yaml
- swagger-recorder.png
- 2026-04-22-aximo-stt-service.md
- 2026-04-24-api-operational-polish.md
- 2026-04-24-api-production-polish.md
- 2026-04-24-production-hardening-limits.md
- 2026-04-24-production-runtime-polish.md
- 2026-04-24-runtime-production-hardening.md
- 2026-04-22-aximo-stt-design.md
- architecture.md
- benchmark-baselines.md
- benchmarks.md
- client-examples.md
- deployment-security.md
- kubernetes.md
- model-licenses.md
- publishing.md
- realtime-protocol.md
- benchmark-api.sh
- fetch-models.sh
- generate-benchmark-fixtures.sh
- render-benchmark-report.sh
- .dockerignore
- .gitignore
- Cargo.lock
- Cargo.toml
- deny.toml
- docker-compose.yml
- Dockerfile
- justfile
- README.md
- rust-toolchain.toml
- SECURITY.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo
View Details ▼
cargo
Manage Rust projects and their module dependencies (crates).
Some subcommands such as `build` have their own usage documentation.
cargo search {{search_string}}
Search for crates:
cargo install {{crate_name}}
Install a binary crate:
cargo install --list
List installed binary crates:
docker compose up
View Details ▼
docker compose up
Start and run Docker services defined in a Compose file.
docker compose up
Start all services defined in the docker-compose file:
docker compose up {{[-d|--detach]}}
Start services in the background (detached mode):
docker compose up --build
Start services and rebuild images before starting:
just
View Details ▼
just
Save and run project-specific commands.
just {{recipe}}
Run a recipe specified in the justfile:
just
Start a REPL (interactive shell):
just --init
Initialize new justfile in project root:
