nari-qwen3-tts
Ultrafast Qwen3-TTS: sub-50 ms time-to-first-audio at 10 requests per second.
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
docker build
설명 보기 ▼
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
설명 보기 ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
uv run
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
apt-get
Debian 및 Ubuntu 패키지 관리 도구.
`apt-cache`를 사용하여 패키지를 검색하세요.
Ubuntu 16.04 이후 버전에서는 대화형 사용 시 `apt` 사용을 권장합니다.
더 많은 정보: <https://manned.org/apt-get.8>.
sudo apt-get update
사용 가능한 패키지 및 버전 목록 업데이트 (다른 `apt-get` 명령어 실행 전에 권장됨):
sudo apt-get install {{package}}
패키지 설치 또는 최신 버전으로 업데이트:
sudo apt-get remove {{package}}
패키지 제거:
