nari-qwen3-tts
Ultrafast Qwen3-TTS: sub-50 ms time-to-first-audio at 10 requests per second.
File Explorer
- entrypoint.sh
- p95-ttfa-under-load.png
- websocket.md
- docker-build-publish.sh
- __init__.py
- app.py
- http.py
- schemas.py
- wav.py
- websocket.py
- __init__.py
- codec_state.py
- command.py
- errors.py
- frames.py
- health.py
- model.py
- request.py
- result.py
- rng.py
- stage.py
- stream.py
- work.py
- __init__.py
- admission.py
- codec_readiness.py
- commit.py
- engine.py
- input_builder.py
- output.py
- pipeline.py
- state.py
- trace.py
- __init__.py
- _validate.py
- build.py
- cache.py
- code_predictor.py
- codec.py
- cuda_graph.py
- executor.py
- health.py
- input_layout.py
- optimizations.py
- pcm.py
- rng.py
- rows.py
- sampling.py
- submission.py
- talker.py
- talker_kv.py
- types.py
- __init__.py
- capabilities.py
- checkpoint.py
- components.py
- config.py
- incremental_codec.py
- input_layout.py
- kernels.py
- layers.py
- loader.py
- public.py
- sampling.py
- streaming_text.py
- text.py
- __init__.py
- catalog.py
- planner.py
- policy.py
- __init__.py
- balanced.yaml
- throughput.yaml
- ttfa.yaml
- __init__.py
- __main__.py
- config.py
- factory.py
- profile.py
- serve.py
- __init__.py
- test_batch_compatibility.py
- test_codec_state.py
- test_commands.py
- test_requests.py
- test_results.py
- test_stages.py
- test_stream.py
- test_submission.py
- test_work.py
- __init__.py
- test_claim_ledger.py
- test_commit_contract.py
- test_executor_submission.py
- test_input_builder.py
- test_lifecycle.py
- test_live_input.py
- test_output_ordering.py
- test_output_queue.py
- test_state.py
- test_submission_order.py
- test_submission_window.py
- test_threading.py
- __init__.py
- test_code_predictor_boundary.py
- test_code_predictor_resources.py
- test_codec_boundary.py
- test_codec_resources.py
- test_submission.py
- test_talker_decode_boundary.py
- test_talker_prefill_boundary.py
- test_talker_resources.py
- __init__.py
- test_codec.py
- test_contracts.py
- test_domain.py
- test_fixed_jobs.py
- test_sampling.py
- test_talker_input_modes.py
- __init__.py
- test_assets.py
- test_components.py
- test_distribution.py
- test_domain_contract.py
- test_loader.py
- test_model_config.py
- test_owner.py
- test_public_api.py
- test_text_domain.py
- __init__.py
- rows.py
- test_config_catalog.py
- test_cuda_graph_runtime.py
- test_cuda_graph_sampling.py
- test_factory.py
- test_optimizations.py
- test_staging_cache_rng.py
- test_talker_executor.py
- test_talker_kv_metadata.py
- test_typed_stages.py
- __init__.py
- test_capture_catalog.py
- test_contracts.py
- test_factory.py
- test_forward_isolation.py
- test_observation.py
- test_pipeline_integration.py
- test_pipeline_loop.py
- test_planner_decision.py
- test_policy_validation.py
- test_pressing_policy.py
- test_readiness.py
- test_scheduler.py
- test_trace.py
- __init__.py
- fakes.py
- test_composition.py
- test_contracts.py
- test_factory.py
- test_http.py
- test_live_input.py
- test_serve.py
- test_service.py
- test_service_lifecycle.py
- test_transport_contracts.py
- test_value_contracts.py
- conftest.py
- test_profile.py
- .dockerignore
- .gitignore
- .python-version
- CONTRIBUTING.md
- docker-compose.yaml
- Dockerfile
- LICENSE
- pyproject.toml
- README.md
- uv.lock
# 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.
docker build
View Details ▼
docker build
Build an image from a Dockerfile.
docker build .
Build a Docker image using the Dockerfile in the current directory:
docker build {{github.com/creack/docker-firefox}}
Build a Docker image from a Dockerfile at a specified URL:
docker build {{[-t|--tag]}} {{name:tag}} .
Build a Docker image and tag it:
docker run
View Details ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
uv run
View Details ▼
uv run
Run a command or script in the project environment.
uv run {{path/to/script.py}}
Run a Python script:
uv run {{[-m|--module]}} {{module_name}}
Run a Python module:
uv run {{[-w|--with]}} {{package}} {{command}}
Run a command with additional packages installed temporarily:
uv sync
View Details ▼
uv sync
Update the project's environment to match the lockfile.
uv sync
Sync the project environment with the lockfile:
uv sync --all-extras
Sync and include all optional dependencies:
uv sync --extra {{extra_name}}
Sync with specific optional dependencies:
apt-get
View Details ▼
apt-get
Debian and Ubuntu package management utility.
Search for packages using `apt-cache`.
It is recommended to use `apt` when used interactively in Ubuntu versions 16.04 and later.
sudo apt-get update
Update the list of available packages and versions (it's recommended to run this before other `apt-get` commands):
sudo apt-get install {{package}}
Install a package, or update it to the latest available version:
sudo apt-get remove {{package}}
Remove a package:
