From 4bb58dc7aadc4f963244729831bdd64c0c794f97 Mon Sep 17 00:00:00 2001 From: jedzill4 Date: Wed, 25 Feb 2026 20:27:26 -0300 Subject: [PATCH] deps(diart): improve diart dependency tree. rename gpu-cu129 dependency group to cu129 --- .github/workflows/support-matrix.yml | 134 -- Dockerfile | 2 +- README.md | 10 +- compose.yml | 4 +- pyproject.toml | 25 +- uv.lock | 2335 ++++++++++++++++---------- 6 files changed, 1518 insertions(+), 992 deletions(-) delete mode 100644 .github/workflows/support-matrix.yml diff --git a/.github/workflows/support-matrix.yml b/.github/workflows/support-matrix.yml deleted file mode 100644 index 06264b7..0000000 --- a/.github/workflows/support-matrix.yml +++ /dev/null @@ -1,134 +0,0 @@ -name: Support Matrix - -on: - pull_request: - workflow_dispatch: - inputs: - timeout_sec: - description: "Per-case timeout in seconds" - required: true - default: "300" - -permissions: - contents: read - -jobs: - test-and-support-matrix: - name: | - ${{ matrix.os }} | py${{ matrix.python-version }} | tests + support matrix - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.11", "3.12", "3.13"] - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup uv - uses: astral-sh/setup-uv@v6 - - - name: Install dependencies for tests - run: uv sync --extra test --python ${{ matrix.python-version }} - - # - name: Run unit tests - # run: uv run pytest tests/ -v - - - name: Run compatibility matrix - shell: bash - env: - MATRIX_PY: ${{ matrix.python-version }} - TIMEOUT_SEC: ${{ github.event.inputs.timeout_sec || '300' }} - run: | - set -euo pipefail - - base_port=8010 - - run_case() { - local name="$1" - shift 1 - - echo "[matrix] scenario=${name}" - - uv run wlk \ - --host 127.0.0.1 \ - --port "${base_port}" \ - --warmup-file "" \ - --model tiny \ - "$@" & - local server_pid=$! - - cleanup() { - kill "${server_pid}" >/dev/null 2>&1 || true - wait "${server_pid}" >/dev/null 2>&1 || true - } - trap cleanup RETURN - - local ready=0 - local checks=$((TIMEOUT_SEC / 2)) - local i=0 - while [ "${i}" -lt "${checks}" ]; do - if python -c "import urllib.request; urllib.request.urlopen('http://127.0.0.1:${base_port}/', timeout=2).read(1)" >/dev/null 2>&1; then - ready=1 - break - fi - if ! kill -0 "${server_pid}" >/dev/null 2>&1; then - break - fi - sleep 2 - i=$((i + 1)) - done - - if [ "${ready}" -ne 1 ]; then - echo "[matrix] ${name} failed (startup_not_ready)" - return 1 - fi - - echo "[matrix] ${name} passed" - base_port=$((base_port + 1)) - } - - # FW profile: cpu + diart + sortformer + translation - export UV_PROJECT_ENVIRONMENT=".ci-envs/${{ matrix.os }}-py${{ matrix.python-version }}-fw" - uv sync --python "${MATRIX_PY}" --no-dev \ - --extra cpu \ - --extra diarization-diart \ - --extra diarization-sortformer \ - --extra translation - - run_case \ - "fw-diart-translation" \ - --backend faster-whisper \ - --diarization \ - --diarization-backend diart \ - --language en \ - --target-language es - - run_case \ - "fw-sortformer-translation" \ - --backend faster-whisper \ - --diarization \ - --diarization-backend sortformer \ - --language en \ - --target-language es - - unset UV_PROJECT_ENVIRONMENT - - # Voxtral profile: cpu + diart + voxtral-hf + translation - export UV_PROJECT_ENVIRONMENT=".ci-envs/${{ matrix.os }}-py${{ matrix.python-version }}-voxtral" - uv sync --python "${MATRIX_PY}" --no-dev \ - --extra cpu \ - --extra diarization-diart \ - --extra voxtral-hf \ - --extra translation - - run_case \ - "voxtral-diart-translation" \ - --backend voxtral \ - --diarization \ - --diarization-backend diart \ - --language en \ - --target-language es - - unset UV_PROJECT_ENVIRONMENT diff --git a/Dockerfile b/Dockerfile index 317d231..694d95c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ ENV UV_PYTHON_INSTALL_DIR=/python RUN uv python install 3.12 # Install dependencies first to leverage caching -ARG EXTRAS=gpu-cu129 +ARG EXTRAS=cu129 COPY pyproject.toml uv.lock /app/ RUN set -eux; \ set --; \ diff --git a/README.md b/README.md index d907b9a..444c0df 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Go to `chrome-extension` for instructions. | Feature | `uv sync` | `pip install -e` | |-----------|-------------|-------------| | **CPU PyTorch stack** | `uv sync --extra cpu` | `pip install -e ".[cpu]"` | -| **CUDA 12.9 PyTorch stack** | `uv sync --extra gpu-cu129` | `pip install -e ".[gpu-cu129]"` | +| **CUDA 12.9 PyTorch stack** | `uv sync --extra cu129` | `pip install -e ".[cu129]"` | | **Translation** | `uv sync --extra translation` | `pip install -e ".[translation]"` | | **Sentence tokenizer** | `uv sync --extra sentence_tokenizer` | `pip install -e ".[sentence_tokenizer]"` | | **Voxtral (HF backend)** | `uv sync --extra voxtral-hf` | `pip install -e ".[voxtral-hf]"` | @@ -86,10 +86,10 @@ Supported GPU profiles: ```bash # Profile A: Sortformer diarization -uv sync --extra gpu-cu129 --extra diarization-sortformer +uv sync --extra cu129 --extra diarization-sortformer # Profile B: Voxtral HF + translation -uv sync --extra gpu-cu129 --extra voxtral-hf --extra translation +uv sync --extra cu129 --extra voxtral-hf --extra translation ``` `voxtral-hf` and `diarization-sortformer` are intentionally incompatible extras and must be installed in separate environments. @@ -322,8 +322,8 @@ docker compose up --build wlk-cpu #### Customization - `--build-arg` Options: - - `EXTRAS="gpu-cu129,diarization-sortformer"` - GPU Sortformer profile extras. - - `EXTRAS="gpu-cu129,voxtral-hf,translation"` - GPU Voxtral profile extras. + - `EXTRAS="cu129,diarization-sortformer"` - GPU Sortformer profile extras. + - `EXTRAS="cu129,voxtral-hf,translation"` - GPU Voxtral profile extras. - `EXTRAS="cpu,diarization-diart,translation"` - CPU profile extras. - Hugging Face cache + token are configured in `compose.yml` using a named volume and `HF_TKN_FILE` (default: `./token`). diff --git a/compose.yml b/compose.yml index da3696e..d63ee23 100644 --- a/compose.yml +++ b/compose.yml @@ -4,7 +4,7 @@ services: context: . dockerfile: Dockerfile args: - EXTRAS: ${GPU_SORTFORMER_EXTRAS:-gpu-cu129,diarization-sortformer} + EXTRAS: ${GPU_SORTFORMER_EXTRAS:-cu129,diarization-sortformer} image: wlk:gpu-sortformer gpus: all ports: @@ -21,7 +21,7 @@ services: context: . dockerfile: Dockerfile args: - EXTRAS: ${GPU_VOXTRAL_EXTRAS:-gpu-cu129,voxtral-hf,translation} + EXTRAS: ${GPU_VOXTRAL_EXTRAS:-cu129,voxtral-hf,translation} image: wlk:gpu-voxtral gpus: all ports: diff --git a/pyproject.toml b/pyproject.toml index 5e52648..4e366aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,21 +39,31 @@ sentence_tokenizer = ["mosestokenizer", "wtpsplit"] voxtral-hf = [ "transformers>=5.2.0; python_version >= '3.10'", "mistral-common[audio]", + "accelerate>=0.12", ] cpu = ["torch>=2.0.0", "torchaudio>=2.0.0"] -gpu-cu129 = [ +cu129 = [ "torch>=2.0.0", "torchaudio>=2.0.0", 'triton>=2.0.0; platform_machine == "x86_64" and (sys_platform == "linux" or sys_platform == "linux2")', ] diarization-sortformer = ["nemo-toolkit[asr]>2.4; python_version >= '3.10'"] -diarization-diart = ["diart"] +diarization-diart = [ + "diart", + "torch<2.9.0", + "torchaudio<2.9.0", + "torchvision<0.24.0", +] [tool.uv] conflicts = [ [ { extra = "cpu" }, - { extra = "gpu-cu129" }, + { extra = "cu129" }, + ], + [ + { extra = "diarization-diart" }, + { extra = "cu129" }, ], [ { extra = "voxtral-hf" }, @@ -64,11 +74,16 @@ conflicts = [ [tool.uv.sources] torch = [ { index = "pytorch-cpu", extra = "cpu", marker = "platform_system != 'Darwin'" }, - { index = "pytorch-cu129", extra = "gpu-cu129", marker = "platform_system == 'Linux' and platform_machine == 'x86_64'" }, + { index = "pytorch-cpu", extra = "diarization-diart", marker = "platform_system != 'Darwin'" }, + { index = "pytorch-cu129", extra = "cu129", marker = "platform_system == 'Linux' and platform_machine == 'x86_64'" }, ] torchaudio = [ { index = "pytorch-cpu", extra = "cpu", marker = "platform_system != 'Darwin'" }, - { index = "pytorch-cu129", extra = "gpu-cu129", marker = "platform_system == 'Linux' and platform_machine == 'x86_64'" }, + { index = "pytorch-cpu", extra = "diarization-diart", marker = "platform_system != 'Darwin'" }, + { index = "pytorch-cu129", extra = "cu129", marker = "platform_system == 'Linux' and platform_machine == 'x86_64'" }, +] +torchvision = [ + { index = "pytorch-cpu", extra = "diarization-diart", marker = "platform_system != 'Darwin'" }, ] [[tool.uv.index]] diff --git a/uv.lock b/uv.lock index af7a45e..7d0a527 100644 --- a/uv.lock +++ b/uv.lock @@ -2,64 +2,136 @@ version = 1 revision = 3 requires-python = ">=3.11, <3.14" resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] conflicts = [[ { package = "whisperlivekit", extra = "cpu" }, - { package = "whisperlivekit", extra = "gpu-cu129" }, + { package = "whisperlivekit", extra = "cu129" }, +], [ + { package = "whisperlivekit", extra = "diarization-diart" }, + { package = "whisperlivekit", extra = "cu129" }, ], [ { package = "whisperlivekit", extra = "diarization-sortformer" }, { package = "whisperlivekit", extra = "voxtral-hf" }, @@ -79,15 +151,18 @@ name = "accelerate" version = "1.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" } }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-voxtral-hf' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "numpy" }, { name = "packaging" }, { name = "psutil" }, { name = "pyyaml" }, { name = "safetensors" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/4a/8e/ac2a9566747a93f8be36ee08532eb0160558b07630a081a6056a9f89bf1d/accelerate-1.12.0.tar.gz", hash = "sha256:70988c352feb481887077d2ab845125024b2a137a5090d6d7a32b57d03a45df6", size = 398399, upload-time = "2025-11-21T11:27:46.973Z" } wheels = [ @@ -108,13 +183,13 @@ name = "aiohttp" version = "3.13.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "aiohappyeyeballs" }, - { name = "aiosignal" }, - { name = "attrs" }, - { name = "frozenlist" }, - { name = "multidict" }, - { name = "propcache" }, - { name = "yarl" }, + { name = "aiohappyeyeballs", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "aiosignal", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "attrs", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "frozenlist", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "multidict", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "propcache", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "yarl", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/50/42/32cf8e7704ceb4481406eb87161349abb46a57fee3f008ba9cb610968646/aiohttp-3.13.3.tar.gz", hash = "sha256:a949eee43d3782f2daae4f4a2819b2cb9b0c5d3b7f7a927067cc84dafdbb9f88", size = 7844556, upload-time = "2026-01-03T17:33:05.204Z" } wheels = [ @@ -176,8 +251,8 @@ name = "aiosignal" version = "1.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "frozenlist" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "frozenlist", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.13' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (python_full_version >= '3.13' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } wheels = [ @@ -189,9 +264,9 @@ name = "alembic" version = "1.18.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "mako" }, - { name = "sqlalchemy" }, - { name = "typing-extensions" }, + { name = "mako", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "sqlalchemy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/94/13/8b084e0f2efb0275a1d534838844926f798bd766566b1375174e2448cd31/alembic-1.18.4.tar.gz", hash = "sha256:cb6e1fd84b6174ab8dbb2329f86d631ba9559dd78df550b57804d607672cedbc", size = 2056725, upload-time = "2026-02-10T16:00:47.195Z" } wheels = [ @@ -228,7 +303,7 @@ version = "4.12.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "idna" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/96/f0/5eb65b2bb0d09ac6776f2eb54adee6abe8228ea05b20a5ad0e4945de8aac/anyio-4.12.1.tar.gz", hash = "sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703", size = 228685, upload-time = "2026-01-06T11:45:21.246Z" } wheels = [ @@ -241,9 +316,8 @@ version = "0.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/90/fa/5c2be1f96dc179f83cdd3bb267edbd1f47d08f756785c016d5c2163901a7/asteroid-filterbanks-0.4.0.tar.gz", hash = "sha256:415f89d1dcf2b13b35f03f7a9370968ac4e6fa6800633c522dac992b283409b9", size = 24599, upload-time = "2021-04-09T20:03:07.456Z" } @@ -314,8 +388,8 @@ name = "audioread" version = "3.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "standard-aifc", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "standard-sunau", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "standard-aifc", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "standard-sunau", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a1/4a/874ecf9b472f998130c2b5e145dcdb9f6131e84786111489103b66772143/audioread-3.1.0.tar.gz", hash = "sha256:1c4ab2f2972764c896a8ac61ac53e261c8d29f0c6ccd652f84e18f08a4cab190", size = 20082, upload-time = "2025-10-26T19:44:13.484Z" } wheels = [ @@ -390,7 +464,7 @@ name = "cffi" version = "2.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pycparser", marker = "implementation_name != 'PyPy' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pycparser", marker = "implementation_name != 'PyPy' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } wheels = [ @@ -495,7 +569,7 @@ name = "click" version = "8.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } wheels = [ @@ -525,7 +599,7 @@ name = "colorlog" version = "6.10.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorama", marker = "(sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a2/61/f083b5ac52e505dfc1c624eafbf8c7589a0d7f32daa398d2e7590efa5fda/colorlog-6.10.1.tar.gz", hash = "sha256:eb4ae5cb65fe7fec7773c2306061a8e63e02efc2c72eba9d27b0fa23c94f1321", size = 17162, upload-time = "2025-10-16T16:14:11.978Z" } wheels = [ @@ -537,7 +611,7 @@ name = "contourpy" version = "1.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy" }, + { name = "numpy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/58/01/1253e6698a07380cd31a736d248a3f2a50a7c88779a1813da27503cadc2a/contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880", size = 13466174, upload-time = "2025-07-26T12:03:12.549Z" } wheels = [ @@ -624,7 +698,7 @@ name = "cuda-bindings" version = "12.9.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cuda-pathfinder", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "cuda-pathfinder", marker = "sys_platform != 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/a9/2b/ebcbb60aa6dba830474cd360c42e10282f7a343c0a1f58d24fbd3b7c2d77/cuda_bindings-12.9.4-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a6a429dc6c13148ff1e27c44f40a3dd23203823e637b87fd0854205195988306", size = 11840604, upload-time = "2025-10-21T14:51:34.565Z" }, @@ -765,7 +839,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "dill" }, { name = "filelock" }, - { name = "fsspec", extra = ["http"], marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "fsspec", extra = ["http"], marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "httpx" }, { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" } }, { name = "multiprocess" }, @@ -811,13 +885,14 @@ dependencies = [ { name = "rx" }, { name = "scipy" }, { name = "sounddevice" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchvision" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision", version = "0.23.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, { name = "websocket-client" }, { name = "websocket-server" }, @@ -913,11 +988,11 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "av" }, { name = "ctranslate2" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "onnxruntime" }, - { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tokenizers", version = "0.22.2", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tokenizers", version = "0.22.2", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "tqdm" }, ] wheels = [ @@ -1073,7 +1148,7 @@ wheels = [ [package.optional-dependencies] http = [ - { name = "aiohttp" }, + { name = "aiohttp", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] [[package]] @@ -1249,40 +1324,67 @@ name = "huggingface-hub" version = "0.36.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "fsspec", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "hf-xet", marker = "(platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "requests", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tqdm", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "filelock", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "fsspec", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "hf-xet", marker = "(platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "requests", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tqdm", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/7c/b7/8cb61d2eece5fb05a83271da168186721c450eb74e3c31f7ef3169fa475b/huggingface_hub-0.36.2.tar.gz", hash = "sha256:1934304d2fb224f8afa3b87007d58501acfda9215b334eed53072dd5e815ff7a", size = 649782, upload-time = "2026-02-06T09:24:13.098Z" } wheels = [ @@ -1294,48 +1396,90 @@ name = "huggingface-hub" version = "1.4.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "hf-xet", marker = "(platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "httpx", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "shellingham", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typer-slim", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "fsspec", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "hf-xet", marker = "(platform_machine == 'AMD64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'amd64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'arm64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "httpx", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "packaging", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyyaml", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "shellingham", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tqdm", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typer-slim", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typing-extensions", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c4/fc/eb9bc06130e8bbda6a616e1b80a7aa127681c448d6b49806f61db2670b61/huggingface_hub-1.4.1.tar.gz", hash = "sha256:b41131ec35e631e7383ab26d6146b8d8972abc8b6309b963b306fbcca87f5ed5", size = 642156, upload-time = "2026-02-06T09:20:03.013Z" } wheels = [ @@ -1426,17 +1570,17 @@ name = "ipython" version = "9.10.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "decorator" }, { name = "ipython-pygments-lexers" }, { name = "jedi" }, { name = "matplotlib-inline" }, - { name = "pexpect", marker = "(sys_platform != 'emscripten' and sys_platform != 'win32') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "pexpect", marker = "(sys_platform != 'emscripten' and sys_platform != 'win32') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'emscripten' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "prompt-toolkit" }, { name = "pygments" }, { name = "stack-data" }, { name = "traitlets" }, - { name = "typing-extensions", marker = "python_full_version < '3.12' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "typing-extensions", marker = "python_full_version < '3.12' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a6/60/2111715ea11f39b1535bed6024b7dec7918b71e5e5d30855a5b503056b50/ipython-9.10.0.tar.gz", hash = "sha256:cd9e656be97618a0676d058134cd44e6dc7012c0e5cb36a9ce96a8c904adaf77", size = 4426526, upload-time = "2026-02-02T10:00:33.594Z" } wheels = [ @@ -1533,9 +1677,8 @@ name = "julius" version = "0.2.7" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a1/19/c9e1596b5572c786b93428d0904280e964c930fae7e6c9368ed9e1b63922/julius-0.2.7.tar.gz", hash = "sha256:3c0f5f5306d7d6016fcc95196b274cae6f07e2c9596eed314e4e7641554fbb08", size = 59640, upload-time = "2022-09-19T16:13:34.2Z" } @@ -1658,9 +1801,11 @@ dependencies = [ { name = "pyyaml" }, { name = "soundfile" }, { name = "tabulate" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/03/28/ef2fb33e424e29dec83d2a150d76fb1920418a5d93d5268e6ce401cc33ad/lhotse-1.31.1.tar.gz", hash = "sha256:2ebc3c103c3e09313dff0c4e8740584e28ec35d74e985412c6b37279144a9716", size = 654706, upload-time = "2025-09-18T21:43:51.262Z" } @@ -1673,8 +1818,8 @@ name = "libcst" version = "1.8.6" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pyyaml", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml-ft", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "pyyaml", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyyaml-ft", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/de/cd/337df968b38d94c5aabd3e1b10630f047a2b345f6e1d4456bd9fe7417537/libcst-1.8.6.tar.gz", hash = "sha256:f729c37c9317126da9475bdd06a7208eb52fcbd180a6341648b45a56b4ba708b", size = 891354, upload-time = "2025-11-03T22:33:30.621Z" } wheels = [ @@ -1729,8 +1874,8 @@ dependencies = [ { name = "scipy" }, { name = "soundfile" }, { name = "soxr" }, - { name = "standard-aifc", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "standard-sunau", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "standard-aifc", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "standard-sunau", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/64/36/360b5aafa0238e29758729e9486c6ed92a6f37fa403b7875e06c115cdf4a/librosa-0.11.0.tar.gz", hash = "sha256:f5ed951ca189b375bbe2e33b2abd7e040ceeee302b9bbaeeffdfddb8d0ace908", size = 327001, upload-time = "2025-03-11T15:09:54.884Z" } @@ -1743,17 +1888,19 @@ name = "lightning" version = "2.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "fsspec", extra = ["http"] }, - { name = "lightning-utilities" }, - { name = "packaging" }, - { name = "pytorch-lightning" }, - { name = "pyyaml" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchmetrics" }, - { name = "tqdm" }, - { name = "typing-extensions" }, + { name = "fsspec", extra = ["http"], marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "lightning-utilities", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pytorch-lightning", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchmetrics", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tqdm", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/56/d0/78ea244ac044cd4df15aa8294a50ff3561fb177e7e5ba788aaa542046cae/lightning-2.4.0.tar.gz", hash = "sha256:9156604cc56e4b2b603f34fa7f0fe5107375c8e6d85e74544b319a15faa9ed0e", size = 620632, upload-time = "2024-08-07T09:46:44.399Z" } wheels = [ @@ -1765,8 +1912,8 @@ name = "lightning-utilities" version = "0.15.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "packaging" }, - { name = "typing-extensions" }, + { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f1/45/7fa8f56b17dc0f0a41ec70dd307ecd6787254483549843bef4c30ab5adce/lightning_utilities-0.15.3.tar.gz", hash = "sha256:792ae0204c79f6859721ac7f386c237a33b0ed06ba775009cb894e010a842033", size = 33553, upload-time = "2026-02-22T14:48:53.348Z" } wheels = [ @@ -1824,7 +1971,7 @@ name = "mako" version = "1.3.10" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "markupsafe" }, + { name = "markupsafe", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/9e/38/bd5b78a920a64d708fe6bc8e0a2c075e1389d53bef8413725c63ba041535/mako-1.3.10.tar.gz", hash = "sha256:99579a6f39583fa7e5630a28c3c1f440e4e97a414b80372649c0ce338da2ea28", size = 392474, upload-time = "2025-04-10T12:44:31.16Z" } wheels = [ @@ -1918,15 +2065,15 @@ name = "matplotlib" version = "3.10.8" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "contourpy" }, - { name = "cycler" }, - { name = "fonttools" }, - { name = "kiwisolver" }, - { name = "numpy" }, - { name = "packaging" }, - { name = "pillow" }, - { name = "pyparsing" }, - { name = "python-dateutil" }, + { name = "contourpy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "cycler", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "fonttools", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "kiwisolver", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "numpy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pillow", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyparsing", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "python-dateutil", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/8a/76/d3c6e3a13fe484ebe7718d14e269c9569c4eb0020a968a327acb3b9a8fe6/matplotlib-3.10.8.tar.gz", hash = "sha256:2299372c19d56bcd35cf05a2738308758d32b9eaed2371898d8f5bd33f084aa3", size = 34806269, upload-time = "2025-12-10T22:56:51.155Z" } wheels = [ @@ -2008,7 +2155,7 @@ dependencies = [ { name = "numpy" }, { name = "pillow" }, { name = "pydantic" }, - { name = "pydantic-extra-types", extra = ["pycountry"], marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pydantic-extra-types", extra = ["pycountry"], marker = "extra == 'extra-14-whisperlivekit-voxtral-hf' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "requests" }, { name = "tiktoken" }, { name = "typing-extensions" }, @@ -2195,11 +2342,11 @@ name = "nemo-toolkit" version = "2.6.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cuda-bindings", marker = "sys_platform != 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "cuda-bindings", marker = "sys_platform != 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "fsspec" }, { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" } }, - { name = "numba", marker = "sys_platform == 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numba-cuda", marker = "sys_platform != 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numba", marker = "sys_platform == 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "numba-cuda", marker = "sys_platform != 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "numexpr" }, { name = "numpy" }, { name = "onnx" }, @@ -2210,9 +2357,11 @@ dependencies = [ { name = "setuptools" }, { name = "tensorboard" }, { name = "text-unidecode" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, { name = "wget" }, { name = "wrapt" }, @@ -2280,11 +2429,13 @@ name = "nllw" version = "0.1.5" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/47/84/cd9e2c8ed1ac942911f8ab9378fd875bd85a62af81025cb56b9b4435314b/nllw-0.1.5.tar.gz", hash = "sha256:67f9c13fff6b43c2e05b2e762e7001471329dbdb34634b56a2cab639807b1b9a", size = 1520002, upload-time = "2026-02-20T10:03:13.966Z" } wheels = [ @@ -2323,7 +2474,7 @@ name = "numba-cuda" version = "0.15.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numba", marker = "sys_platform != 'darwin' or extra != 'extra-14-whisperlivekit-cpu' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "numba", marker = "sys_platform != 'darwin' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/56/d7/f8dd134b7896b30d69e5b29af27264b1143458d43e088f210abc16cba91e/numba_cuda-0.15.1.tar.gz", hash = "sha256:219771179a396ba2a6911648b908609c1373d2055373d5fb8294f0a1947c4690", size = 491996, upload-time = "2025-06-14T21:34:24.931Z" } wheels = [ @@ -2448,15 +2599,15 @@ name = "nvidia-cublas-cu12" version = "12.8.4.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/29/99/db44d685f0e257ff0e213ade1964fc459b4a690a73293220e98feb3307cf/nvidia_cublas_cu12-12.8.4.1-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:b86f6dd8935884615a0683b663891d43781b819ac4f2ba2b0c9604676af346d0", size = 590537124, upload-time = "2025-03-07T01:43:53.556Z" }, @@ -2484,15 +2635,15 @@ name = "nvidia-cuda-cupti-cu12" version = "12.8.90" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/d5/1f/b3bd73445e5cb342727fd24fe1f7b748f690b460acadc27ea22f904502c8/nvidia_cuda_cupti_cu12-12.8.90-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:4412396548808ddfed3f17a467b104ba7751e6b58678a4b840675c56d21cf7ed", size = 9533318, upload-time = "2025-03-07T01:40:10.421Z" }, @@ -2520,15 +2671,15 @@ name = "nvidia-cuda-nvrtc-cu12" version = "12.8.93" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/05/6b/32f747947df2da6994e999492ab306a903659555dddc0fbdeb9d71f75e52/nvidia_cuda_nvrtc_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:a7756528852ef889772a84c6cd89d41dfa74667e24cca16bb31f8f061e3e9994", size = 88040029, upload-time = "2025-03-07T01:42:13.562Z" }, @@ -2556,15 +2707,15 @@ name = "nvidia-cuda-runtime-cu12" version = "12.8.90" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/7c/75/f865a3b236e4647605ea34cc450900854ba123834a5f1598e160b9530c3a/nvidia_cuda_runtime_cu12-12.8.90-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:52bf7bbee900262ffefe5e9d5a2a69a30d97e2bc5bb6cc866688caa976966e3d", size = 965265, upload-time = "2025-03-07T01:39:43.533Z" }, @@ -2592,8 +2743,8 @@ name = "nvidia-cudnn-cu12" version = "9.10.2.21" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "nvidia-cublas-cu12", version = "12.9.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, + { name = "nvidia-cublas-cu12", version = "12.9.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/fa/41/e79269ce215c857c935fd86bcfe91a451a584dfc27f1e068f568b9ad1ab7/nvidia_cudnn_cu12-9.10.2.21-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:c9132cc3f8958447b4910a1720036d9eff5928cc3179b0a51fb6d167c6cc87d8", size = 705026878, upload-time = "2025-06-06T21:52:51.348Z" }, @@ -2606,18 +2757,18 @@ name = "nvidia-cufft-cu12" version = "11.3.3.83" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/60/bc/7771846d3a0272026c416fbb7e5f4c1f146d6d80704534d0b187dd6f4800/nvidia_cufft_cu12-11.3.3.83-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:848ef7224d6305cdb2a4df928759dca7b1201874787083b6e7550dd6765ce69a", size = 193109211, upload-time = "2025-03-07T01:44:56.873Z" }, @@ -2635,7 +2786,7 @@ resolution-markers = [ "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] dependencies = [ - { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/9b/2b/76445b0af890da61b501fde30650a1a4bd910607261b209cccb5235d3daa/nvidia_cufft_cu12-11.4.1.4-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1a28c9b12260a1aa7a8fd12f5ebd82d027963d635ba82ff39a1acfa7c4c0fbcf", size = 200822453, upload-time = "2025-06-05T20:05:27.889Z" }, @@ -2648,15 +2799,15 @@ name = "nvidia-cufile-cu12" version = "1.13.1.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/bb/fe/1bcba1dfbfb8d01be8d93f07bfc502c93fa23afa6fd5ab3fc7c1df71038a/nvidia_cufile_cu12-1.13.1.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1d069003be650e131b21c932ec3d8969c1715379251f8d23a1860554b1cb24fc", size = 1197834, upload-time = "2025-03-07T01:45:50.723Z" }, @@ -2682,15 +2833,15 @@ name = "nvidia-curand-cu12" version = "10.3.9.90" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/45/5e/92aa15eca622a388b80fbf8375d4760738df6285b1e92c43d37390a33a9a/nvidia_curand_cu12-10.3.9.90-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:dfab99248034673b779bc6decafdc3404a8a6f502462201f2f31f11354204acd", size = 63625754, upload-time = "2025-03-07T01:46:10.735Z" }, @@ -2718,20 +2869,20 @@ name = "nvidia-cusolver-cu12" version = "11.7.3.90" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "nvidia-cusparse-cu12", version = "12.5.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, + { name = "nvidia-cusparse-cu12", version = "12.5.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/c8/32/f7cd6ce8a7690544d084ea21c26e910a97e077c9b7f07bf5de623ee19981/nvidia_cusolver_cu12-11.7.3.90-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:db9ed69dbef9715071232caa9b69c52ac7de3a95773c2db65bdba85916e4e5c0", size = 267229841, upload-time = "2025-03-07T01:46:54.356Z" }, @@ -2749,9 +2900,9 @@ resolution-markers = [ "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] dependencies = [ - { name = "nvidia-cublas-cu12", version = "12.9.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparse-cu12", version = "12.5.10.65", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas-cu12", version = "12.9.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparse-cu12", version = "12.5.10.65", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/03/99/686ff9bf3a82a531c62b1a5c614476e8dfa24a9d89067aeedf3592ee4538/nvidia_cusolver_cu12-11.7.5.82-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:62efa83e4ace59a4c734d052bb72158e888aa7b770e1a5f601682f16fe5b4fd2", size = 337869834, upload-time = "2025-06-05T20:06:53.125Z" }, @@ -2764,18 +2915,18 @@ name = "nvidia-cusparse-cu12" version = "12.5.8.93" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/bc/f7/cd777c4109681367721b00a106f491e0d0d15cfa1fd59672ce580ce42a97/nvidia_cusparse_cu12-12.5.8.93-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:9b6c161cb130be1a07a27ea6923df8141f3c295852f4b260c65f18f3e0a091dc", size = 288117129, upload-time = "2025-03-07T01:47:40.407Z" }, @@ -2793,7 +2944,7 @@ resolution-markers = [ "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] dependencies = [ - { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/5e/6f/8710fbd17cdd1d0fc3fea7d36d5b65ce1933611c31e1861da330206b253a/nvidia_cusparse_cu12-12.5.10.65-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:221c73e7482dd93eda44e65ce567c031c07e2f93f6fa0ecd3ba876a195023e83", size = 366359408, upload-time = "2025-06-05T20:07:42.501Z" }, @@ -2825,15 +2976,15 @@ name = "nvidia-nvjitlink-cu12" version = "12.8.93" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/f6/74/86a07f1d0f42998ca31312f998bd3b9a7eff7f52378f4f270c8679c77fb9/nvidia_nvjitlink_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:81ff63371a7ebd6e6451970684f916be2eab07321b73c9d244dc2b4da7f73b88", size = 39254836, upload-time = "2025-03-07T01:49:55.661Z" }, @@ -2858,11 +3009,11 @@ wheels = [ [[package]] name = "nvidia-nvshmem-cu12" -version = "3.4.5" +version = "3.3.20" source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1d/6a/03aa43cc9bd3ad91553a88b5f6fb25ed6a3752ae86ce2180221962bc2aa5/nvidia_nvshmem_cu12-3.4.5-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0b48363fc6964dede448029434c6abed6c5e37f823cb43c3bcde7ecfc0457e15", size = 138936938, upload-time = "2025-09-06T00:32:05.589Z" }, - { url = "https://files.pythonhosted.org/packages/b5/09/6ea3ea725f82e1e76684f0708bbedd871fc96da89945adeba65c3835a64c/nvidia_nvshmem_cu12-3.4.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:042f2500f24c021db8a06c5eec2539027d57460e1c1a762055a6554f72c369bd", size = 139103095, upload-time = "2025-09-06T00:32:31.266Z" }, + { url = "https://files.pythonhosted.org/packages/92/9d/3dd98852568fb845ec1f7902c90a22b240fe1cbabda411ccedf2fd737b7b/nvidia_nvshmem_cu12-3.3.20-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0b0b960da3842212758e4fa4696b94f129090b30e5122fea3c5345916545cff0", size = 124484616, upload-time = "2025-08-04T20:24:59.172Z" }, + { url = "https://files.pythonhosted.org/packages/3b/6c/99acb2f9eb85c29fc6f3a7ac4dccfd992e22666dd08a642b303311326a97/nvidia_nvshmem_cu12-3.3.20-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d00f26d3f9b2e3c3065be895e3059d6479ea5c638a3f38c9fec49b1b9dd7c1e5", size = 124657145, upload-time = "2025-08-04T20:25:19.995Z" }, ] [[package]] @@ -2870,15 +3021,15 @@ name = "nvidia-nvtx-cu12" version = "12.8.90" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/10/c0/1b303feea90d296f6176f32a2a70b5ef230f9bdeb3a72bddb0dc922dc137/nvidia_nvtx_cu12-12.8.90-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d7ad891da111ebafbf7e015d34879f7112832fc239ff0d7d776b6cb685274615", size = 91161, upload-time = "2025-03-07T01:42:23.922Z" }, @@ -2906,8 +3057,8 @@ name = "omegaconf" version = "2.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "antlr4-python3-runtime" }, - { name = "pyyaml" }, + { name = "antlr4-python3-runtime", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/09/48/6388f1bb9da707110532cb70ec4d2822858ddfb44f1cdf1233c20a80ea4b/omegaconf-2.3.0.tar.gz", hash = "sha256:d5d4b6d29955cc50ad50c46dc269bcd92c6e00f5f90d23ab5fee7bfca4ba4cc7", size = 3298120, upload-time = "2022-12-08T20:59:22.753Z" } wheels = [ @@ -2981,13 +3132,13 @@ name = "optuna" version = "4.7.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "alembic" }, - { name = "colorlog" }, - { name = "numpy" }, - { name = "packaging" }, - { name = "pyyaml" }, - { name = "sqlalchemy" }, - { name = "tqdm" }, + { name = "alembic", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "colorlog", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "numpy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "sqlalchemy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tqdm", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/58/b2/b5e12de7b4486556fe2257611b55dbabf30d0300bdb031831aa943ad20e4/optuna-4.7.0.tar.gz", hash = "sha256:d91817e2079825557bd2e97de2e8c9ae260bfc99b32712502aef8a5095b2d2c0", size = 479740, upload-time = "2026-01-19T05:45:52.604Z" } wheels = [ @@ -3074,9 +3225,11 @@ dependencies = [ { name = "psutil" }, { name = "pyyaml" }, { name = "safetensors" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" } }, ] @@ -3354,8 +3507,8 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "asteroid-filterbanks" }, { name = "einops" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "lightning" }, { name = "omegaconf" }, { name = "pyannote-core" }, @@ -3368,13 +3521,12 @@ dependencies = [ { name = "soundfile" }, { name = "speechbrain" }, { name = "tensorboardx" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torch-audiomentations" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torchmetrics" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ec/1e/efe9619c38f1281ddf21640654d8ea9e3f67c459b76f78657b26d8557bbe/pyannote_audio-3.4.0.tar.gz", hash = "sha256:d523d883cb8d37cb6daf99f3ba83f9138bb193646ad71e6eae7deb89d8ddd642", size = 804850, upload-time = "2025-09-09T07:04:51.17Z" } @@ -3387,10 +3539,10 @@ name = "pyannote-core" version = "5.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy" }, - { name = "scipy" }, - { name = "sortedcontainers" }, - { name = "typing-extensions" }, + { name = "numpy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "scipy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "sortedcontainers", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/65/03/feaf7534206f02c75baf151ce4b8c322b402a6f477c2be82f69d9269cbe6/pyannote.core-5.0.0.tar.gz", hash = "sha256:1a55bcc8bd680ba6be5fa53efa3b6f3d2cdd67144c07b6b4d8d66d5cb0d2096f", size = 59247, upload-time = "2022-12-15T13:02:05.312Z" } wheels = [ @@ -3402,10 +3554,10 @@ name = "pyannote-database" version = "5.1.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pandas" }, - { name = "pyannote-core" }, - { name = "pyyaml" }, - { name = "typer" }, + { name = "pandas", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyannote-core", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typer", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a9/ae/de36413d69a46be87cb612ebbcdc4eacbeebce3bc809124603e44a88fe26/pyannote.database-5.1.3.tar.gz", hash = "sha256:0eaf64c1cc506718de60d2d702f1359b1ae7ff252ee3e4799f1c5e378cd52c31", size = 49957, upload-time = "2025-01-15T20:28:26.437Z" } wheels = [ @@ -3417,16 +3569,16 @@ name = "pyannote-metrics" version = "3.2.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "docopt" }, - { name = "matplotlib" }, - { name = "numpy" }, - { name = "pandas" }, - { name = "pyannote-core" }, - { name = "pyannote-database" }, - { name = "scikit-learn" }, - { name = "scipy" }, - { name = "sympy" }, - { name = "tabulate" }, + { name = "docopt", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "matplotlib", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "numpy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pandas", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyannote-core", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyannote-database", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "scikit-learn", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "scipy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "sympy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tabulate", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/39/2b/6c5f01d3c49aa1c160765946e23782ca6436ae8b9bc514b56319ff5f16e7/pyannote.metrics-3.2.1.tar.gz", hash = "sha256:08024255a3550e96a8e9da4f5f4af326886548480de891414567c8900920ee5c", size = 49086, upload-time = "2022-06-20T14:10:34.618Z" } wheels = [ @@ -3653,7 +3805,7 @@ name = "pytest" version = "9.0.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "iniconfig" }, { name = "packaging" }, { name = "pluggy" }, @@ -3670,7 +3822,7 @@ version = "1.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pytest" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/90/2c/8af215c0f776415f3590cac4f9086ccefd6fd463befeae41cd4d3f193e5a/pytest_asyncio-1.3.0.tar.gz", hash = "sha256:d7f52f36d231b80ee124cd216ffb19369aa168fc10095013c6b014a34d3ee9e5", size = 50087, upload-time = "2025-11-10T16:07:47.256Z" } wheels = [ @@ -3694,16 +3846,18 @@ name = "pytorch-lightning" version = "2.6.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "fsspec", extra = ["http"] }, - { name = "lightning-utilities" }, - { name = "packaging" }, - { name = "pyyaml" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchmetrics" }, - { name = "tqdm" }, - { name = "typing-extensions" }, + { name = "fsspec", extra = ["http"], marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "lightning-utilities", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchmetrics", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tqdm", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/8b/ac/ebd5f6f58691cbd4f73836e43e1727f3814311b960c41f88e259606ca2b2/pytorch_lightning-2.6.1.tar.gz", hash = "sha256:ba08f8901cf226fcca473046ad9346f414e99117762dc869c76e650d5b3d7bdc", size = 665563, upload-time = "2026-01-30T14:59:11.636Z" } wheels = [ @@ -3717,9 +3871,8 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, { name = "scikit-learn" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/9b/80/6e61b1a91debf4c1b47d441f9a9d7fe2aabcdd9575ed70b2811474eb95c3/pytorch-metric-learning-2.9.0.tar.gz", hash = "sha256:27a626caf5e2876a0fd666605a78cb67ef7597e25d7a68c18053dd503830701f", size = 84530, upload-time = "2025-08-17T17:11:19.501Z" } @@ -3861,7 +4014,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, { name = "rpds-py" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/22/f5/df4e9027acead3ecc63e50fe1e36aca1523e1719559c499951bb4b53188f/referencing-0.37.0.tar.gz", hash = "sha256:44aefc3142c5b842538163acb373e24cce6632bd54bdb01b21ad5863489f50d8", size = 78036, upload-time = "2025-10-13T15:30:48.871Z" } wheels = [ @@ -4398,20 +4551,19 @@ name = "speechbrain" version = "1.0.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "hyperpyyaml" }, { name = "joblib" }, { name = "numpy" }, { name = "packaging" }, { name = "scipy" }, { name = "sentencepiece" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ab/10/87e666544a4e0cec7cbdc09f26948994831ae0f8bbc58de3bf53b68285ff/speechbrain-1.0.3.tar.gz", hash = "sha256:fcab3c6e90012cecb1eed40ea235733b550137e73da6bfa2340ba191ec714052", size = 747735, upload-time = "2025-04-07T17:17:06.749Z" } @@ -4424,8 +4576,8 @@ name = "sqlalchemy" version = "2.0.46" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions" }, + { name = "greenlet", marker = "(platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'AMD64' and platform_machine != 'WIN32' and platform_machine != 'aarch64' and platform_machine != 'amd64' and platform_machine != 'ppc64le' and platform_machine != 'win32' and platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (platform_machine == 'AMD64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'WIN32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'amd64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'ppc64le' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'win32' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/06/aa/9ce0f3e7a9829ead5c8ce549392f33a12c4555a6c0609bb27d882e9c7ddf/sqlalchemy-2.0.46.tar.gz", hash = "sha256:cf36851ee7219c170bb0793dbc3da3e80c582e04a5437bc601bfe8c85c9216d7", size = 9865393, upload-time = "2026-01-21T18:03:45.119Z" } wheels = [ @@ -4476,8 +4628,8 @@ name = "standard-aifc" version = "3.13.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "audioop-lts", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "standard-chunk", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "audioop-lts", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "standard-chunk", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c4/53/6050dc3dde1671eb3db592c13b55a8005e5040131f7509cef0215212cb84/standard_aifc-3.13.0.tar.gz", hash = "sha256:64e249c7cb4b3daf2fdba4e95721f811bde8bdfc43ad9f936589b7bb2fae2e43", size = 15240, upload-time = "2024-10-30T16:01:31.772Z" } wheels = [ @@ -4498,7 +4650,7 @@ name = "standard-sunau" version = "3.13.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "audioop-lts", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "audioop-lts", marker = "python_full_version >= '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/66/e3/ce8d38cb2d70e05ffeddc28bb09bad77cfef979eb0a299c9117f7ed4e6a9/standard_sunau-3.13.0.tar.gz", hash = "sha256:b319a1ac95a09a2378a8442f403c66f4fd4b36616d6df6ae82b8e536ee790908", size = 9368, upload-time = "2024-10-30T16:01:41.626Z" } wheels = [ @@ -4511,7 +4663,7 @@ version = "0.52.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "anyio" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c4/68/79977123bb7be889ad680d79a40f339082c1978b5cfcf62c2d8d196873ac/starlette-0.52.1.tar.gz", hash = "sha256:834edd1b0a23167694292e94f597773bc3f89f362be6effee198165a35d62933", size = 2653702, upload-time = "2026-01-18T13:34:11.062Z" } wheels = [ @@ -4655,33 +4807,60 @@ name = "tokenizers" version = "0.21.4" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c2/2f/402986d0823f8d7ca139d969af2917fefaa9b947d1fb32f6168c509f2492/tokenizers-0.21.4.tar.gz", hash = "sha256:fa23f85fbc9a02ec5c6978da172cdcbac23498c3ca9f3645c5c68740ac007880", size = 351253, upload-time = "2025-07-28T15:48:54.325Z" } wheels = [ @@ -4706,39 +4885,81 @@ name = "tokenizers" version = "0.22.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/73/6f/f80cfef4a312e1fb34baf7d85c72d4411afde10978d4657f8cdd811d3ccc/tokenizers-0.22.2.tar.gz", hash = "sha256:473b83b915e547aa366d1eee11806deaf419e17be16310ac0a14077f1e28f917", size = 372115, upload-time = "2026-01-05T10:45:15.988Z" } wheels = [ @@ -4785,147 +5006,259 @@ wheels = [ [[package]] name = "torch" -version = "2.10.0" +version = "2.8.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin'", + "python_full_version == '3.12.*' and sys_platform == 'darwin'", + "python_full_version < '3.12' and sys_platform == 'darwin'", ] dependencies = [ - { name = "cuda-bindings", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "filelock", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-cupti-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-nvrtc-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-runtime-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cudnn-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufft-cu12", version = "11.3.3.83", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufile-cu12", version = "1.13.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-curand-cu12", version = "10.3.9.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusolver-cu12", version = "11.7.3.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparse-cu12", version = "12.5.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparselt-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nccl-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvshmem-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvtx-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "setuptools", marker = "(python_full_version >= '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version >= '3.12' and sys_platform == 'darwin') or (python_full_version >= '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "triton", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "networkx", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "setuptools", marker = "(python_full_version >= '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/0f/8b/4b61d6e13f7108f36910df9ab4b58fd389cc2520d54d81b88660804aad99/torch-2.10.0-2-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:418997cb02d0a0f1497cf6a09f63166f9f5df9f3e16c8a716ab76a72127c714f", size = 79423467, upload-time = "2026-02-10T21:44:48.711Z" }, - { url = "https://files.pythonhosted.org/packages/d3/54/a2ba279afcca44bbd320d4e73675b282fcee3d81400ea1b53934efca6462/torch-2.10.0-2-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:13ec4add8c3faaed8d13e0574f5cd4a323c11655546f91fbe6afa77b57423574", size = 79498202, upload-time = "2026-02-10T21:44:52.603Z" }, - { url = "https://files.pythonhosted.org/packages/ec/23/2c9fe0c9c27f7f6cb865abcea8a4568f29f00acaeadfc6a37f6801f84cb4/torch-2.10.0-2-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:e521c9f030a3774ed770a9c011751fb47c4d12029a3d6522116e48431f2ff89e", size = 79498254, upload-time = "2026-02-10T21:44:44.095Z" }, - { url = "https://files.pythonhosted.org/packages/78/89/f5554b13ebd71e05c0b002f95148033e730d3f7067f67423026cc9c69410/torch-2.10.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:3282d9febd1e4e476630a099692b44fdc214ee9bf8ee5377732d9d9dfe5712e4", size = 145992610, upload-time = "2026-01-21T16:25:26.327Z" }, - { url = "https://files.pythonhosted.org/packages/ae/30/a3a2120621bf9c17779b169fc17e3dc29b230c29d0f8222f499f5e159aa8/torch-2.10.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a2f9edd8dbc99f62bc4dfb78af7bf89499bca3d753423ac1b4e06592e467b763", size = 915607863, upload-time = "2026-01-21T16:25:06.696Z" }, - { url = "https://files.pythonhosted.org/packages/6f/3d/c87b33c5f260a2a8ad68da7147e105f05868c281c63d65ed85aa4da98c66/torch-2.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:29b7009dba4b7a1c960260fc8ac85022c784250af43af9fb0ebafc9883782ebd", size = 113723116, upload-time = "2026-01-21T16:25:21.916Z" }, - { url = "https://files.pythonhosted.org/packages/61/d8/15b9d9d3a6b0c01b883787bd056acbe5cc321090d4b216d3ea89a8fcfdf3/torch-2.10.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:b7bd80f3477b830dd166c707c5b0b82a898e7b16f59a7d9d42778dd058272e8b", size = 79423461, upload-time = "2026-01-21T16:24:50.266Z" }, - { url = "https://files.pythonhosted.org/packages/cc/af/758e242e9102e9988969b5e621d41f36b8f258bb4a099109b7a4b4b50ea4/torch-2.10.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:5fd4117d89ffd47e3dcc71e71a22efac24828ad781c7e46aaaf56bf7f2796acf", size = 145996088, upload-time = "2026-01-21T16:24:44.171Z" }, - { url = "https://files.pythonhosted.org/packages/23/8e/3c74db5e53bff7ed9e34c8123e6a8bfef718b2450c35eefab85bb4a7e270/torch-2.10.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:787124e7db3b379d4f1ed54dd12ae7c741c16a4d29b49c0226a89bea50923ffb", size = 915711952, upload-time = "2026-01-21T16:23:53.503Z" }, - { url = "https://files.pythonhosted.org/packages/6e/01/624c4324ca01f66ae4c7cd1b74eb16fb52596dce66dbe51eff95ef9e7a4c/torch-2.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:2c66c61f44c5f903046cc696d088e21062644cbe541c7f1c4eaae88b2ad23547", size = 113757972, upload-time = "2026-01-21T16:24:39.516Z" }, - { url = "https://files.pythonhosted.org/packages/c9/5c/dee910b87c4d5c0fcb41b50839ae04df87c1cfc663cf1b5fca7ea565eeaa/torch-2.10.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:6d3707a61863d1c4d6ebba7be4ca320f42b869ee657e9b2c21c736bf17000294", size = 79498198, upload-time = "2026-01-21T16:24:34.704Z" }, - { url = "https://files.pythonhosted.org/packages/c9/6f/f2e91e34e3fcba2e3fc8d8f74e7d6c22e74e480bbd1db7bc8900fdf3e95c/torch-2.10.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:5c4d217b14741e40776dd7074d9006fd28b8a97ef5654db959d8635b2fe5f29b", size = 146004247, upload-time = "2026-01-21T16:24:29.335Z" }, - { url = "https://files.pythonhosted.org/packages/98/fb/5160261aeb5e1ee12ee95fe599d0541f7c976c3701d607d8fc29e623229f/torch-2.10.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:6b71486353fce0f9714ca0c9ef1c850a2ae766b409808acd58e9678a3edb7738", size = 915716445, upload-time = "2026-01-21T16:22:45.353Z" }, - { url = "https://files.pythonhosted.org/packages/6a/16/502fb1b41e6d868e8deb5b0e3ae926bbb36dab8ceb0d1b769b266ad7b0c3/torch-2.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:c2ee399c644dc92ef7bc0d4f7e74b5360c37cdbe7c5ba11318dda49ffac2bc57", size = 113757050, upload-time = "2026-01-21T16:24:19.204Z" }, - { url = "https://files.pythonhosted.org/packages/1a/0b/39929b148f4824bc3ad6f9f72a29d4ad865bcf7ebfc2fa67584773e083d2/torch-2.10.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:3202429f58309b9fa96a614885eace4b7995729f44beb54d3e4a47773649d382", size = 79851305, upload-time = "2026-01-21T16:24:09.209Z" }, - { url = "https://files.pythonhosted.org/packages/d8/14/21fbce63bc452381ba5f74a2c0a959fdf5ad5803ccc0c654e752e0dbe91a/torch-2.10.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:aae1b29cd68e50a9397f5ee897b9c24742e9e306f88a807a27d617f07adb3bd8", size = 146005472, upload-time = "2026-01-21T16:22:29.022Z" }, - { url = "https://files.pythonhosted.org/packages/54/fd/b207d1c525cb570ef47f3e9f836b154685011fce11a2f444ba8a4084d042/torch-2.10.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:6021db85958db2f07ec94e1bc77212721ba4920c12a18dc552d2ae36a3eb163f", size = 915612644, upload-time = "2026-01-21T16:21:47.019Z" }, - { url = "https://files.pythonhosted.org/packages/36/53/0197f868c75f1050b199fe58f9bf3bf3aecac9b4e85cc9c964383d745403/torch-2.10.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ff43db38af76fda183156153983c9a096fc4c78d0cd1e07b14a2314c7f01c2c8", size = 113997015, upload-time = "2026-01-21T16:23:00.767Z" }, - { url = "https://files.pythonhosted.org/packages/0e/13/e76b4d9c160e89fff48bf16b449ea324bda84745d2ab30294c37c2434c0d/torch-2.10.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:cdf2a523d699b70d613243211ecaac14fe9c5df8a0b0a9c02add60fb2a413e0f", size = 79498248, upload-time = "2026-01-21T16:23:09.315Z" }, + { url = "https://files.pythonhosted.org/packages/8f/c4/3e7a3887eba14e815e614db70b3b529112d1513d9dae6f4d43e373360b7f/torch-2.8.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:220a06fd7af8b653c35d359dfe1aaf32f65aa85befa342629f716acb134b9710", size = 102073391, upload-time = "2025-08-06T14:53:20.937Z" }, + { url = "https://files.pythonhosted.org/packages/5a/63/4fdc45a0304536e75a5e1b1bbfb1b56dd0e2743c48ee83ca729f7ce44162/torch-2.8.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:c12fa219f51a933d5f80eeb3a7a5d0cbe9168c0a14bbb4055f1979431660879b", size = 888063640, upload-time = "2025-08-06T14:55:05.325Z" }, + { url = "https://files.pythonhosted.org/packages/84/57/2f64161769610cf6b1c5ed782bd8a780e18a3c9d48931319f2887fa9d0b1/torch-2.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:8c7ef765e27551b2fbfc0f41bcf270e1292d9bf79f8e0724848b1682be6e80aa", size = 241366752, upload-time = "2025-08-06T14:53:38.692Z" }, + { url = "https://files.pythonhosted.org/packages/a4/5e/05a5c46085d9b97e928f3f037081d3d2b87fb4b4195030fc099aaec5effc/torch-2.8.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:5ae0524688fb6707c57a530c2325e13bb0090b745ba7b4a2cd6a3ce262572916", size = 73621174, upload-time = "2025-08-06T14:53:25.44Z" }, + { url = "https://files.pythonhosted.org/packages/49/0c/2fd4df0d83a495bb5e54dca4474c4ec5f9c62db185421563deeb5dabf609/torch-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:e2fab4153768d433f8ed9279c8133a114a034a61e77a3a104dcdf54388838705", size = 101906089, upload-time = "2025-08-06T14:53:52.631Z" }, + { url = "https://files.pythonhosted.org/packages/99/a8/6acf48d48838fb8fe480597d98a0668c2beb02ee4755cc136de92a0a956f/torch-2.8.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b2aca0939fb7e4d842561febbd4ffda67a8e958ff725c1c27e244e85e982173c", size = 887913624, upload-time = "2025-08-06T14:56:44.33Z" }, + { url = "https://files.pythonhosted.org/packages/af/8a/5c87f08e3abd825c7dfecef5a0f1d9aa5df5dd0e3fd1fa2f490a8e512402/torch-2.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:2f4ac52f0130275d7517b03a33d2493bab3693c83dcfadf4f81688ea82147d2e", size = 241326087, upload-time = "2025-08-06T14:53:46.503Z" }, + { url = "https://files.pythonhosted.org/packages/be/66/5c9a321b325aaecb92d4d1855421e3a055abd77903b7dab6575ca07796db/torch-2.8.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:619c2869db3ada2c0105487ba21b5008defcc472d23f8b80ed91ac4a380283b0", size = 73630478, upload-time = "2025-08-06T14:53:57.144Z" }, + { url = "https://files.pythonhosted.org/packages/10/4e/469ced5a0603245d6a19a556e9053300033f9c5baccf43a3d25ba73e189e/torch-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:2b2f96814e0345f5a5aed9bf9734efa913678ed19caf6dc2cddb7930672d6128", size = 101936856, upload-time = "2025-08-06T14:54:01.526Z" }, + { url = "https://files.pythonhosted.org/packages/16/82/3948e54c01b2109238357c6f86242e6ecbf0c63a1af46906772902f82057/torch-2.8.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:65616ca8ec6f43245e1f5f296603e33923f4c30f93d65e103d9e50c25b35150b", size = 887922844, upload-time = "2025-08-06T14:55:50.78Z" }, + { url = "https://files.pythonhosted.org/packages/e3/54/941ea0a860f2717d86a811adf0c2cd01b3983bdd460d0803053c4e0b8649/torch-2.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:659df54119ae03e83a800addc125856effda88b016dfc54d9f65215c3975be16", size = 241330968, upload-time = "2025-08-06T14:54:45.293Z" }, + { url = "https://files.pythonhosted.org/packages/de/69/8b7b13bba430f5e21d77708b616f767683629fc4f8037564a177d20f90ed/torch-2.8.0-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:1a62a1ec4b0498930e2543535cf70b1bef8c777713de7ceb84cd79115f553767", size = 73915128, upload-time = "2025-08-06T14:54:34.769Z" }, + { url = "https://files.pythonhosted.org/packages/15/0e/8a800e093b7f7430dbaefa80075aee9158ec22e4c4fc3c1a66e4fb96cb4f/torch-2.8.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:83c13411a26fac3d101fe8035a6b0476ae606deb8688e904e796a3534c197def", size = 102020139, upload-time = "2025-08-06T14:54:39.047Z" }, + { url = "https://files.pythonhosted.org/packages/4a/15/5e488ca0bc6162c86a33b58642bc577c84ded17c7b72d97e49b5833e2d73/torch-2.8.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:8f0a9d617a66509ded240add3754e462430a6c1fc5589f86c17b433dd808f97a", size = 887990692, upload-time = "2025-08-06T14:56:18.286Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a8/6a04e4b54472fc5dba7ca2341ab219e529f3c07b6941059fbf18dccac31f/torch-2.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:a7242b86f42be98ac674b88a4988643b9bc6145437ec8f048fea23f72feb5eca", size = 241603453, upload-time = "2025-08-06T14:55:22.945Z" }, + { url = "https://files.pythonhosted.org/packages/04/6e/650bb7f28f771af0cb791b02348db8b7f5f64f40f6829ee82aa6ce99aabe/torch-2.8.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:7b677e17f5a3e69fdef7eb3b9da72622f8d322692930297e4ccb52fefc6c8211", size = 73632395, upload-time = "2025-08-06T14:55:28.645Z" }, ] [[package]] name = "torch" -version = "2.10.0+cpu" +version = "2.8.0+cpu" source = { registry = "https://download.pytorch.org/whl/cpu" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "setuptools", marker = "(python_full_version >= '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "networkx", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "setuptools", marker = "(python_full_version >= '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp311-cp311-linux_aarch64.whl", hash = "sha256:ce5c113d1f55f8c1f5af05047a24e50d11d293e0cbbb5bf7a75c6c761edd6eaa" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp311-cp311-linux_s390x.whl", hash = "sha256:0e286fcf6ce0cc7b204396c9b4ea0d375f1f0c3e752f68ce3d3aeb265511db8c" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:1cfcb9b1558c6e52dffd0d4effce83b13c5ae5d97338164c372048c21f9cfccb" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:b7cb1ec66cefb90fd7b676eac72cfda3b8d4e4d0cacd7a531963bc2e0a9710ab" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp311-cp311-win_amd64.whl", hash = "sha256:17a09465bab2aab8f0f273410297133d8d8fb6dd84dccbd252ca4a4f3a111847" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp311-cp311-win_arm64.whl", hash = "sha256:c35c0de592941d4944698dbfa87271ab85d3370eca3b694943a2ab307ac34b3f" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-linux_aarch64.whl", hash = "sha256:8de5a36371b775e2d4881ed12cc7f2de400b1ad3d728aa74a281f649f87c9b8c" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-linux_s390x.whl", hash = "sha256:9accc30b56cb6756d4a9d04fcb8ebc0bb68c7d55c1ed31a8657397d316d31596" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:179451716487f8cb09b56459667fa1f5c4c0946c1e75fbeae77cfc40a5768d87" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ee40b8a4b4b2cf0670c6fd4f35a7ef23871af956fecb238fbf5da15a72650b1d" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:21cb5436978ef47c823b7a813ff0f8c2892e266cfe0f1d944879b5fba81bf4e1" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp312-cp312-win_arm64.whl", hash = "sha256:3eaa727e6a73affa61564d86b9d03191df45c8650d0666bd3d57c8597ef61e78" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-linux_aarch64.whl", hash = "sha256:fd215f3d0f681905c5b56b0630a3d666900a37fcc3ca5b937f95275c66f9fd9c" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-linux_s390x.whl", hash = "sha256:170a0623108055be5199370335cf9b41ba6875b3cb6f086db4aee583331a4899" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:e51994492cdb76edce29da88de3672a3022f9ef0ffd90345436948d4992be2c7" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:8d316e5bf121f1eab1147e49ad0511a9d92e4c45cc357d1ab0bee440da71a095" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:b719da5af01b59126ac13eefd6ba3dd12d002dc0e8e79b8b365e55267a8189d3" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313-win_arm64.whl", hash = "sha256:b67d91326e4ed9eccbd6b7d84ed7ffa43f93103aa3f0b24145f3001f3b11b714" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-linux_aarch64.whl", hash = "sha256:5af75e5f49de21b0bdf7672bc27139bd285f9e8dbcabe2d617a2eb656514ac36" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-linux_s390x.whl", hash = "sha256:ba51ef01a510baf8fff576174f702c47e1aa54389a9f1fba323bb1a5003ff0bf" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:0fedcb1a77e8f2aaf7bfd21591bf6d1e0b207473268c9be16b17cb7783253969" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:106dd1930cb30a4a337366ba3f9b25318ebf940f51fd46f789281dd9e736bdc4" }, - { url = "https://download.pytorch.org/whl/cpu/torch-2.10.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:eb1bde1ce198f05c8770017de27e001d404499cf552aaaa014569eff56ca25c0" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-linux_s390x.whl", hash = "sha256:2bfc013dd6efdc8f8223a0241d3529af9f315dffefb53ffa3bf14d3f10127da6" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:680129efdeeec3db5da3f88ee5d28c1b1e103b774aef40f9d638e2cce8f8d8d8" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:cb06175284673a581dd91fb1965662ae4ecaba6e5c357aa0ea7bb8b84b6b7eeb" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-win_amd64.whl", hash = "sha256:7631ef49fbd38d382909525b83696dc12a55d68492ade4ace3883c62b9fc140f" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp311-cp311-win_arm64.whl", hash = "sha256:41e6fc5ec0914fcdce44ccf338b1d19a441b55cafdd741fd0bf1af3f9e4cfd14" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp312-cp312-linux_s390x.whl", hash = "sha256:0e34e276722ab7dd0dffa9e12fe2135a9b34a0e300c456ed7ad6430229404eb5" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:610f600c102386e581327d5efc18c0d6edecb9820b4140d26163354a99cd800d" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:cb9a8ba8137ab24e36bf1742cb79a1294bd374db570f09fc15a5e1318160db4e" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:2be20b2c05a0cce10430cc25f32b689259640d273232b2de357c35729132256d" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp312-cp312-win_arm64.whl", hash = "sha256:99fc421a5d234580e45957a7b02effbf3e1c884a5dd077afc85352c77bf41434" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313-linux_s390x.whl", hash = "sha256:8b5882276633cf91fe3d2d7246c743b94d44a7e660b27f1308007fdb1bb89f7d" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:a5064b5e23772c8d164068cc7c12e01a75faf7b948ecd95a0d4007d7487e5f25" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:8f81dedb4c6076ec325acc3b47525f9c550e5284a18eae1d9061c543f7b6e7de" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:e1ee1b2346ade3ea90306dfbec7e8ff17bc220d344109d189ae09078333b0856" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313-win_arm64.whl", hash = "sha256:64c187345509f2b1bb334feed4666e2c781ca381874bde589182f81247e61f88" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:af81283ac671f434b1b25c95ba295f270e72db1fad48831eb5e4748ff9840041" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:a9dbb6f64f63258bc811e2c0c99640a81e5af93c531ad96e95c5ec777ea46dab" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.8.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:6d93a7165419bc4b2b907e859ccab0dea5deeab261448ae9a5ec5431f14c0e64" }, ] [[package]] name = "torch" -version = "2.10.0+cu129" +version = "2.9.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", +] +dependencies = [ + { name = "filelock", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "networkx", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-cupti-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-nvrtc-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-runtime-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cudnn-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufft-cu12", version = "11.3.3.83", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufile-cu12", version = "1.13.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-curand-cu12", version = "10.3.9.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusolver-cu12", version = "11.7.3.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparse-cu12", version = "12.5.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparselt-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nccl-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvshmem-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvtx-cu12", version = "12.8.90", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "setuptools", marker = "(python_full_version >= '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version >= '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version >= '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "triton", version = "3.5.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/db/c064112ac0089af3d2f7a2b5bfbabf4aa407a78b74f87889e524b91c5402/torch-2.9.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:62b3fd888277946918cba4478cf849303da5359f0fb4e3bfb86b0533ba2eaf8d", size = 104220430, upload-time = "2025-11-12T15:20:31.705Z" }, + { url = "https://files.pythonhosted.org/packages/56/be/76eaa36c9cd032d3b01b001e2c5a05943df75f26211f68fae79e62f87734/torch-2.9.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d033ff0ac3f5400df862a51bdde9bad83561f3739ea0046e68f5401ebfa67c1b", size = 899821446, upload-time = "2025-11-12T15:20:15.544Z" }, + { url = "https://files.pythonhosted.org/packages/47/cc/7a2949e38dfe3244c4df21f0e1c27bce8aedd6c604a587dd44fc21017cb4/torch-2.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:0d06b30a9207b7c3516a9e0102114024755a07045f0c1d2f2a56b1819ac06bcb", size = 110973074, upload-time = "2025-11-12T15:21:39.958Z" }, + { url = "https://files.pythonhosted.org/packages/1e/ce/7d251155a783fb2c1bb6837b2b7023c622a2070a0a72726ca1df47e7ea34/torch-2.9.1-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:52347912d868653e1528b47cafaf79b285b98be3f4f35d5955389b1b95224475", size = 74463887, upload-time = "2025-11-12T15:20:36.611Z" }, + { url = "https://files.pythonhosted.org/packages/0f/27/07c645c7673e73e53ded71705045d6cb5bae94c4b021b03aa8d03eee90ab/torch-2.9.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:da5f6f4d7f4940a173e5572791af238cb0b9e21b1aab592bd8b26da4c99f1cd6", size = 104126592, upload-time = "2025-11-12T15:20:41.62Z" }, + { url = "https://files.pythonhosted.org/packages/19/17/e377a460603132b00760511299fceba4102bd95db1a0ee788da21298ccff/torch-2.9.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:27331cd902fb4322252657f3902adf1c4f6acad9dcad81d8df3ae14c7c4f07c4", size = 899742281, upload-time = "2025-11-12T15:22:17.602Z" }, + { url = "https://files.pythonhosted.org/packages/b1/1a/64f5769025db846a82567fa5b7d21dba4558a7234ee631712ee4771c436c/torch-2.9.1-cp312-cp312-win_amd64.whl", hash = "sha256:81a285002d7b8cfd3fdf1b98aa8df138d41f1a8334fd9ea37511517cedf43083", size = 110940568, upload-time = "2025-11-12T15:21:18.689Z" }, + { url = "https://files.pythonhosted.org/packages/6e/ab/07739fd776618e5882661d04c43f5b5586323e2f6a2d7d84aac20d8f20bd/torch-2.9.1-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:c0d25d1d8e531b8343bea0ed811d5d528958f1dcbd37e7245bc686273177ad7e", size = 74479191, upload-time = "2025-11-12T15:21:25.816Z" }, + { url = "https://files.pythonhosted.org/packages/20/60/8fc5e828d050bddfab469b3fe78e5ab9a7e53dda9c3bdc6a43d17ce99e63/torch-2.9.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:c29455d2b910b98738131990394da3e50eea8291dfeb4b12de71ecf1fdeb21cb", size = 104135743, upload-time = "2025-11-12T15:21:34.936Z" }, + { url = "https://files.pythonhosted.org/packages/f2/b7/6d3f80e6918213babddb2a37b46dbb14c15b14c5f473e347869a51f40e1f/torch-2.9.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:524de44cd13931208ba2c4bde9ec7741fd4ae6bfd06409a604fc32f6520c2bc9", size = 899749493, upload-time = "2025-11-12T15:24:36.356Z" }, + { url = "https://files.pythonhosted.org/packages/a6/47/c7843d69d6de8938c1cbb1eba426b1d48ddf375f101473d3e31a5fc52b74/torch-2.9.1-cp313-cp313-win_amd64.whl", hash = "sha256:545844cc16b3f91e08ce3b40e9c2d77012dd33a48d505aed34b7740ed627a1b2", size = 110944162, upload-time = "2025-11-12T15:21:53.151Z" }, + { url = "https://files.pythonhosted.org/packages/28/0e/2a37247957e72c12151b33a01e4df651d9d155dd74d8cfcbfad15a79b44a/torch-2.9.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5be4bf7496f1e3ffb1dd44b672adb1ac3f081f204c5ca81eba6442f5f634df8e", size = 74830751, upload-time = "2025-11-12T15:21:43.792Z" }, + { url = "https://files.pythonhosted.org/packages/4b/f7/7a18745edcd7b9ca2381aa03353647bca8aace91683c4975f19ac233809d/torch-2.9.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:30a3e170a84894f3652434b56d59a64a2c11366b0ed5776fab33c2439396bf9a", size = 104142929, upload-time = "2025-11-12T15:21:48.319Z" }, + { url = "https://files.pythonhosted.org/packages/f4/dd/f1c0d879f2863ef209e18823a988dc7a1bf40470750e3ebe927efdb9407f/torch-2.9.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:8301a7b431e51764629208d0edaa4f9e4c33e6df0f2f90b90e261d623df6a4e2", size = 899748978, upload-time = "2025-11-12T15:23:04.568Z" }, + { url = "https://files.pythonhosted.org/packages/1f/9f/6986b83a53b4d043e36f3f898b798ab51f7f20fdf1a9b01a2720f445043d/torch-2.9.1-cp313-cp313t-win_amd64.whl", hash = "sha256:2e1c42c0ae92bf803a4b2409fdfed85e30f9027a66887f5e7dcdbc014c7531db", size = 111176995, upload-time = "2025-11-12T15:22:01.618Z" }, + { url = "https://files.pythonhosted.org/packages/40/60/71c698b466dd01e65d0e9514b5405faae200c52a76901baf6906856f17e4/torch-2.9.1-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:2c14b3da5df416cf9cb5efab83aa3056f5b8cd8620b8fde81b4987ecab730587", size = 74480347, upload-time = "2025-11-12T15:21:57.648Z" }, +] + +[[package]] +name = "torch" +version = "2.9.1+cpu" +source = { registry = "https://download.pytorch.org/whl/cpu" } +resolution-markers = [ + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", +] +dependencies = [ + { name = "filelock", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "networkx", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "setuptools", marker = "(python_full_version >= '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] +wheels = [ + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:0e611cfb16724e62252b67d31073bc5c490cb83e92ecdc1192762535e0e44487" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:3de2adb9b4443dc9210ef1f1b16da3647ace53553166d6360bbbd7edd6f16e4d" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp311-cp311-win_amd64.whl", hash = "sha256:69b3785d28be5a9c56ab525788ec5000349ec59132a74b7d5e954b905015b992" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp311-cp311-win_arm64.whl", hash = "sha256:15b4ae6fe371d96bffb8e1e9af62164797db20a0dc1337345781659cfd0b8bb1" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:3bf9b442a51a2948e41216a76d7ab00f0694cfcaaa51b6f9bcab57b7f89843e6" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:7417d8c565f219d3455654cb431c6d892a3eb40246055e14d645422de13b9ea1" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:a4e06b4f441675d26b462123c8a83e77c55f1ec8ebc081203be2db1ea8054add" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp312-cp312-win_arm64.whl", hash = "sha256:1abe31f14b560c1f062699e966cb08ef5b67518a1cfac2d8547a3dbcd8387b06" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:3e532e553b37ee859205a9b2d1c7977fd6922f53bbb1b9bfdd5bdc00d1a60ed4" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:39b3dff6d8fba240ae0d1bede4ca11c2531ae3b47329206512d99e17907ff74b" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:404a7ab2fffaf2ca069e662f331eb46313692b2f1630df2720094284f390ccef" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp313-cp313-win_arm64.whl", hash = "sha256:161decbff26a33f13cb5ba6d2c8f458bbf56193bcc32ecc70be6dd4c7a3ee79d" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:01b1884f724977a20c7da2f640f1c7b37f4a2c117a7f4a6c1c0424d14cb86322" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:031a597147fa81b1e6d79ccf1ad3ccc7fafa27941d6cf26ff5caaa384fb20e92" }, + { url = "https://download.pytorch.org/whl/cpu/torch-2.9.1%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:e586ab1363e3f86aa4cc133b7fdcf98deb1d2c13d43a7a6e5a6a18e9c5364893" }, +] + +[[package]] +name = "torch" +version = "2.9.1+cu129" source = { registry = "https://download.pytorch.org/whl/cu129" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", @@ -4933,40 +5266,39 @@ resolution-markers = [ "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] dependencies = [ - { name = "cuda-bindings", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "filelock", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "fsspec", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "jinja2", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "networkx", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cublas-cu12", version = "12.9.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-cupti-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-nvrtc-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cuda-runtime-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cudnn-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufft-cu12", version = "11.4.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cufile-cu12", version = "1.14.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-curand-cu12", version = "10.3.10.19", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusolver-cu12", version = "11.7.5.82", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparse-cu12", version = "12.5.10.65", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-cusparselt-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nccl-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvshmem-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "nvidia-nvtx-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "setuptools", marker = "(python_full_version >= '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "sympy", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "triton", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typing-extensions", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "filelock", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "fsspec", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "jinja2", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "networkx", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cublas-cu12", version = "12.9.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-cupti-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-nvrtc-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cuda-runtime-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cudnn-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufft-cu12", version = "11.4.1.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cufile-cu12", version = "1.14.1.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-curand-cu12", version = "10.3.10.19", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusolver-cu12", version = "11.7.5.82", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparse-cu12", version = "12.5.10.65", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-cusparselt-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nccl-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.9.86", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvshmem-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "nvidia-nvtx-cu12", version = "12.9.79", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "setuptools", marker = "(python_full_version >= '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (python_full_version < '3.12' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "sympy", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "triton", version = "3.5.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typing-extensions", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:9e28f146e14173ebe2302088c5745b8c540171ffe4b4225bfbbd8639f7962514" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:ef82198b7b2f271cda50fa1d7ccd69643ac60dc48c7f38a91510c872b9722028" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:895501ca59670503c00aeca56aa864fe59ebb11bdc919e779683d5ae263a171a" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:a3c703e74a88cccfeb4b1807c49d563a0a73793ba72d4fa035d4ac5885f3aefd" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:08dc9eb950efbf2b65a7973e6d00c8c770d697140296841dc3d86cbc8d372a76" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e116126decbfbd1fc6f8e07c0d1527f014b0b787b50479d84592ccc44870f8d5" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:426cd15b348547131a3de733056396dea0edfb511cd5e351a6ba9efa561dfb86" }, - { url = "https://download.pytorch.org/whl/cu129/torch-2.10.0%2Bcu129-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:3f62b9033869ea62c76edb803b129d4889b4c094d295d86a79cabb4a36a597d9" }, + { url = "https://download.pytorch.org/whl/cu129/torch-2.9.1%2Bcu129-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5a990644f98b4db59630a5b9cf41711294fe621131dbc41e1488f3a665c8b320" }, + { url = "https://download.pytorch.org/whl/cu129/torch-2.9.1%2Bcu129-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a070a0c3d357b44a239810767f7509c3fce3146e051751410b50630b12486cc2" }, + { url = "https://download.pytorch.org/whl/cu129/torch-2.9.1%2Bcu129-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:c501c66fe5b0e2fc70f9d8a18e17a265f92ad1d1009dba03f5938d2f15a9066f" }, + { url = "https://download.pytorch.org/whl/cu129/torch-2.9.1%2Bcu129-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9968834a95e4b09f702549285f6210eade0d268b3b7e52b35aff1c6529fb8022" }, + { url = "https://download.pytorch.org/whl/cu129/torch-2.9.1%2Bcu129-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:ab44cf28e6ca2df679f0845fb4b950c81834431218840ca01c0a1583892a0986" }, + { url = "https://download.pytorch.org/whl/cu129/torch-2.9.1%2Bcu129-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:5adb25576c9cff0a25aab7e859f44121a5b150a6e319e027c27b55bf1ed57524" }, + { url = "https://download.pytorch.org/whl/cu129/torch-2.9.1%2Bcu129-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:794482180a4f2d92a960f470fcd47e066dbe2eeb27816880e618d3ce031805f7" }, + { url = "https://download.pytorch.org/whl/cu129/torch-2.9.1%2Bcu129-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:0df90a06330f53bebb40b5740e5c24c0aad4e8b363d09b02379f1c12ab43564b" }, ] [[package]] @@ -4975,13 +5307,12 @@ version = "0.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "julius" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, { name = "torch-pitch-shift" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/31/8d/2f8fd7e34c75f5ee8de4310c3bd3f22270acd44d1f809e2fe7c12fbf35f8/torch_audiomentations-0.12.0.tar.gz", hash = "sha256:b02d4c5eb86376986a53eb405cca5e34f370ea9284411237508e720c529f7888", size = 52094, upload-time = "2025-01-15T09:07:01.071Z" } wheels = [ @@ -4995,12 +5326,11 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "packaging" }, { name = "primepy" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/79/a6/722a832bca75d5079f6731e005b3d0c2eec7c6c6863d030620952d143d57/torch_pitch_shift-1.2.5.tar.gz", hash = "sha256:6e1c7531f08d0f407a4c55e5ff8385a41355c5c5d27ab7fa08632e51defbd0ed", size = 4725, upload-time = "2024-09-25T19:10:12.922Z" } wheels = [ @@ -5009,104 +5339,209 @@ wheels = [ [[package]] name = "torchaudio" -version = "2.10.0" -source = { registry = "https://pypi.org/simple" } -resolution-markers = [ - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", -] -dependencies = [ - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, -] -wheels = [ - { url = "https://files.pythonhosted.org/packages/5c/e7/401fe1d024bf9352371d854be6f339ad9928669e6bc8a5ba08e9dbce81cf/torchaudio-2.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bcab0e39eb18da84cba1a0c87f600abb6ce97c882200cb46e841caea106f037f", size = 736373, upload-time = "2026-01-21T16:28:41.589Z" }, - { url = "https://files.pythonhosted.org/packages/6f/b7/c66dc34a27441d78997e20d0ffe2f5ad73db9f7b1267511be255bb94ac9b/torchaudio-2.10.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:87c841a21e82703ebd4a29170c4e60c25a2b47312dc212930087ad58965ac0c8", size = 391843, upload-time = "2026-01-21T16:28:43.093Z" }, - { url = "https://files.pythonhosted.org/packages/13/ae/a2a34a64947c4fa4a61b4c86d8f36fbcb4ebfec30fdde140267db260f96c/torchaudio-2.10.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:b2c77fb9114dd463dc805560bf55a1ac2a52e219794cc32b7b32cf2aeffd2826", size = 1894140, upload-time = "2026-01-21T16:28:35.892Z" }, - { url = "https://files.pythonhosted.org/packages/69/26/cd2aec609b4f8918e4e85e5c6a3f569bc7b5f72a7ecba3f784077102749c/torchaudio-2.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:4c6e9609046143b30a30183893d23ff1ce5de603dbe914b3cce5cc29f5aa5a9c", size = 474792, upload-time = "2026-01-21T16:28:45.254Z" }, - { url = "https://files.pythonhosted.org/packages/0f/36/28a6f3e857616cf7576bdbf8170e483b8c5d0a1f8d349ecb2b75921236aa/torchaudio-2.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9d0fbdbfd2f621c51d28571050d6d0c7287791034e5c7303b31480af1258f33f", size = 737144, upload-time = "2026-01-21T16:28:44.189Z" }, - { url = "https://files.pythonhosted.org/packages/ea/3f/df620439a76ece170472d41438d11a1545d5db5dc9f1eaeab8c6e055a328/torchaudio-2.10.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:42b148a0921a3721abd1f6ae098b1ec9f89703e555c4f7a0d44da87b8decbcb9", size = 391973, upload-time = "2026-01-21T16:28:39.732Z" }, - { url = "https://files.pythonhosted.org/packages/98/25/e55a30d7138f8fe56ed006df25b0a3c27681f0ec7bc9989e1778e6d559c3/torchaudio-2.10.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:0e77b2956448d63790a99beed0b74ac8b8cd3a94dcdd9ad01974411078f46278", size = 1895234, upload-time = "2026-01-21T16:28:37.034Z" }, - { url = "https://files.pythonhosted.org/packages/be/a0/da53c7d20fac15f66f8838653b91162de1bf21fb40fee88cf839e4ef5174/torchaudio-2.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:7f76a01ecebf1869e1f2c50a261f1cf07e5fccb24402b4e9bbb82d6725b9c7dd", size = 475470, upload-time = "2026-01-21T16:28:40.615Z" }, - { url = "https://files.pythonhosted.org/packages/b6/02/341e7bd588355f82c5180103cb2f8070a72ab1be920ab27553a1135d4aa6/torchaudio-2.10.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:8fd38d28ee150c584d3ee3b05f39e021f0ad8a8ec8fec1f26dfe150c9db9b2f5", size = 737164, upload-time = "2026-01-21T16:28:38.354Z" }, - { url = "https://files.pythonhosted.org/packages/49/fd/831c2595c81b17141180ca11ab3c0836cc544ef13e15aa0e7b2cb619e582/torchaudio-2.10.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:5bc39ff3ea341097ce1ab023dd88c9dd8ca5f96ebf48821e7d23766137bb55d7", size = 392757, upload-time = "2026-01-21T16:28:33.631Z" }, - { url = "https://files.pythonhosted.org/packages/8e/d8/405c80c57dc68ca5855bddfaae57c3d84ea7397bf1eb2aa5d59c9fa1d3a9/torchaudio-2.10.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:3057c4286db5673d266124a2a10ca54e19f516772e9057f44573a7da5b85e328", size = 1897099, upload-time = "2026-01-21T16:28:24.793Z" }, - { url = "https://files.pythonhosted.org/packages/73/cf/0e48d67788c935e3b3d00e6f55a930a54a67f432e04c33ef80a38cb764fd/torchaudio-2.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:99e74d1901742bc10961d807fe75c0dd9496f4a4a4ff4bb317c5de4a0b6f24e6", size = 475476, upload-time = "2026-01-21T16:28:28.249Z" }, - { url = "https://files.pythonhosted.org/packages/48/29/30bcce0f17a8279b051b09250993691a828f89a03278306b23571c18df04/torchaudio-2.10.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6cfe98ef0ea9bee6d6297493ce67ce0c54a38d80caf6535a3ae48900fd5f3769", size = 742449, upload-time = "2026-01-21T16:28:29.556Z" }, - { url = "https://files.pythonhosted.org/packages/43/8c/653e7f67855424bf3b7cbb48335f8316f7fb02bb01a6cab38f6bf9555676/torchaudio-2.10.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:b41b254d958632dc00dc7768431cadda516c91641d798775cbb19bcd4f0d2be4", size = 393430, upload-time = "2026-01-21T16:28:34.855Z" }, - { url = "https://files.pythonhosted.org/packages/8e/1f/f91fcb9dd47a19b720fb48042a2f6f023651948e73726e98fff60d5ed5c7/torchaudio-2.10.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:da1081d1018a1e95f5a13947402aeb037cf5ac8861219a6164df004898a96bb1", size = 1897271, upload-time = "2026-01-21T16:28:23.519Z" }, - { url = "https://files.pythonhosted.org/packages/57/27/270c26890f43838e8faa5d3e52f079bd9d9d09f9a535a11cf6b94e20ed21/torchaudio-2.10.0-cp313-cp313t-win_amd64.whl", hash = "sha256:f1afa53146a5655258d3a86e689c6879dfe78581d9bee9ef611ace98722f86bb", size = 478966, upload-time = "2026-01-21T16:28:32.491Z" }, -] - -[[package]] -name = "torchaudio" -version = "2.10.0+cpu" +version = "2.8.0" source = { registry = "https://download.pytorch.org/whl/cpu" } resolution-markers = [ - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", ] dependencies = [ - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:08981b656c71bcb990165f45b2421136df286de46ced976dba372fba5a627d2e" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d578c9bc636623c83103054d797c3a889d7f733c1375fedf48d0be4dd9ff0031" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp311-cp311-win_amd64.whl", hash = "sha256:2a78b81a7a21d39a309e5df6e7473c814f5e2de68ef054788a633e618fe5baa8" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:2ef1f8d0f0feba5a9364620925c864890b90abc98a65f35895256dd6aa1710be" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:502b19a5bd0ef8fc97adf06c24146c5e2b94bc3c43b768174407c031cd21c3a5" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:32707736ef079a673433ca36c227c135375602b74d41ee21ff18d1e75caee0b0" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:5a7ab98c247753ee09fb9193cd6acef7884643134c3b1ef31fe30acde10344d1" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:9b07ad143c5d7727a48aa6923991b8d7a06a6b3c78dedee6a1aa46ff16ad3db2" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:ef9a3bc9c0dcbb766775f60bb4e1f5dc02801db0367bc45a6c76e98e041968af" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:6b95eb81b3960961c419b48b321d5dd837f696067ae4adc2bbb431c8b3737366" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:eeb02bee18b0a98a5f6ea2bceebb3bf3176fbadfe9fcb9fa062d9387d8fecc17" }, - { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.10.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:35763804fc32eb5d108ba49b75dd8cc09ae0892070dc528ef6beed6a3d923c7f" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c9276857d241c6de257af765c0f51fc011af38cb725401495121b280913007cf" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:4573c6042950c20278e3608a9a38050ba0bc72e0049e1bbfd249caf859a8029b" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ddef94bf181e6447cbb05f38beaca8f6c5bb8d2b9ddced1aa3452025b9fc70d3" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:862e2e40bf09d865e5df080a84c1a39bbcef40e43140f4b1737eb3a389d3b38f" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f851d32e94ca05e470f0c60e25726ec1e0eb71cb2ca5a0206b7fd03272ccc3c8" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:09535a9b727c0793cd07c1ace99f3f353626281bcc3e30c2f2314e3ebc9d3f96" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:68df9c9068984edff8065c2b6656725e6114fe89281b0cf122c7505305fc98a4" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:1951f10ed092f2dda57634f6a3950ef21c9d9352551aa84a9fccd51bbda18095" }, ] [[package]] name = "torchaudio" -version = "2.10.0+cu129" +version = "2.8.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'darwin'", + "python_full_version == '3.12.*' and sys_platform == 'darwin'", + "python_full_version < '3.12' and sys_platform == 'darwin'", +] +dependencies = [ + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/dd/bf/6b01ef3defb8d0a772c863588711e9b2b011c27d6b37c1b9d15a359c8442/torchaudio-2.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c9276857d241c6de257af765c0f51fc011af38cb725401495121b280913007cf", size = 1859094, upload-time = "2025-08-06T14:58:35.078Z" }, + { url = "https://files.pythonhosted.org/packages/75/ca/da5d0a3bb7d114a8b590ecce14859ea0a05102bb4de68cdd1ed7a90634d6/torchaudio-2.8.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:4573c6042950c20278e3608a9a38050ba0bc72e0049e1bbfd249caf859a8029b", size = 1692033, upload-time = "2025-08-06T14:58:37.393Z" }, + { url = "https://files.pythonhosted.org/packages/b6/ef/62ac736d8f906cc414181050e08a495a637dab985186c34bd76ea37efbc0/torchaudio-2.8.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:776c0b4ba84b9e3ddf6304b9c47cd63549d7896a6f3d5184ece074cc3d76ed6b", size = 4011716, upload-time = "2025-08-06T14:58:40.138Z" }, + { url = "https://files.pythonhosted.org/packages/14/86/015337c8434abc604b8680371df783f66c421a7f211cbe40a374b0540b6d/torchaudio-2.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:078105bf80f725c0215a0bebac8cb2fb1b3993ab32bdc3fcd50145a5b4127001", size = 2505194, upload-time = "2025-08-06T14:58:57.301Z" }, + { url = "https://files.pythonhosted.org/packages/ac/cc/c2e2a3eb6ee956f73c68541e439916f8146170ea9cc61e72adea5c995312/torchaudio-2.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ddef94bf181e6447cbb05f38beaca8f6c5bb8d2b9ddced1aa3452025b9fc70d3", size = 1856736, upload-time = "2025-08-06T14:58:36.3Z" }, + { url = "https://files.pythonhosted.org/packages/c7/0d/24dad878784f1edd62862f27173781669f0c71eb46368636787d1e364188/torchaudio-2.8.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:862e2e40bf09d865e5df080a84c1a39bbcef40e43140f4b1737eb3a389d3b38f", size = 1692930, upload-time = "2025-08-06T14:58:41.312Z" }, + { url = "https://files.pythonhosted.org/packages/c2/a6/84d80f34472503e9eb82245d7df501c59602d75d7360e717fb9b84f91c5e/torchaudio-2.8.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:93a8583f280fe83ba021aa713319381ea71362cc87b67ee38e97a43cb2254aee", size = 4014607, upload-time = "2025-08-06T14:58:47.234Z" }, + { url = "https://files.pythonhosted.org/packages/43/ab/96ad33afa320738a7cfb4b51ba97e2f3cfb1e04ae3115d5057655103ba4f/torchaudio-2.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:4b82cacd1b8ccd543b1149d8cab257a40dfda8119023d2e3a96c66349c84bffb", size = 2499890, upload-time = "2025-08-06T14:58:55.066Z" }, + { url = "https://files.pythonhosted.org/packages/3b/ea/2a68259c4dbb5fe44ebfdcfa40b115010d8c677221a7ef0f5577f3c4f5f1/torchaudio-2.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f851d32e94ca05e470f0c60e25726ec1e0eb71cb2ca5a0206b7fd03272ccc3c8", size = 1857045, upload-time = "2025-08-06T14:58:51.984Z" }, + { url = "https://files.pythonhosted.org/packages/0d/a3/1c79a8ef29fe403b83bdfc033db852bc2a888b80c406325e5c6fb37a7f2d/torchaudio-2.8.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:09535a9b727c0793cd07c1ace99f3f353626281bcc3e30c2f2314e3ebc9d3f96", size = 1692755, upload-time = "2025-08-06T14:58:50.868Z" }, + { url = "https://files.pythonhosted.org/packages/49/df/61941198e9ac6bcebfdd57e1836e4f3c23409308e3d8d7458f0198a6a366/torchaudio-2.8.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:d2a85b124494736241884372fe1c6dd8c15e9bc1931bd325838c5c00238c7378", size = 4013897, upload-time = "2025-08-06T14:59:01.66Z" }, + { url = "https://files.pythonhosted.org/packages/c3/ab/7175d35a4bbc4a465a9f1388571842f16eb6dec5069d7ea9c8c2d7b5b401/torchaudio-2.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:c1b5139c840367a7855a062a06688a416619f6fd2ca46d9b9299b49a7d133dfd", size = 2500085, upload-time = "2025-08-06T14:58:44.95Z" }, + { url = "https://files.pythonhosted.org/packages/34/1a/69b9f8349d9d57953d5e7e445075cbf74000173fb5f5d5d9e9d59415fc63/torchaudio-2.8.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:68df9c9068984edff8065c2b6656725e6114fe89281b0cf122c7505305fc98a4", size = 1935600, upload-time = "2025-08-06T14:58:46.051Z" }, + { url = "https://files.pythonhosted.org/packages/71/76/40fec21b65bccfdc5c8cdb9d511033ab07a7ad4b05f0a5b07f85c68279fc/torchaudio-2.8.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:1951f10ed092f2dda57634f6a3950ef21c9d9352551aa84a9fccd51bbda18095", size = 1704199, upload-time = "2025-08-06T14:58:43.594Z" }, + { url = "https://files.pythonhosted.org/packages/8e/53/95c3363413c2f2009f805144160b093a385f641224465fbcd717449c71fb/torchaudio-2.8.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4f7d97494698d98854129349b12061e8c3398d33bd84c929fa9aed5fd1389f73", size = 4020596, upload-time = "2025-08-06T14:59:03.031Z" }, + { url = "https://files.pythonhosted.org/packages/52/27/7fc2d7435af044ffbe0b9b8e98d99eac096d43f128a5cde23c04825d5dcf/torchaudio-2.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:d4a715d09ac28c920d031ee1e60ecbc91e8a5079ad8c61c0277e658436c821a6", size = 2549553, upload-time = "2025-08-06T14:59:00.019Z" }, +] + +[[package]] +name = "torchaudio" +version = "2.8.0+cpu" +source = { registry = "https://download.pytorch.org/whl/cpu" } +resolution-markers = [ + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", +] +dependencies = [ + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] +wheels = [ + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e54bd7fc9472019308097d99102df9acee22aa2451ae808d27840bc874320292" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp311-cp311-win_amd64.whl", hash = "sha256:db37df7eee906f8fe0a639fdc673f3541cb2e173169b16d4133447eb922d1938" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9377faee65a290578280ac7f4884c3586253dac2ca28c60f458ff6efe86a6b05" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:9b302192b570657c1cc787a4d487ae4bbb7f2aab1c01b1fcc46757e7f86f391e" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:e1b1f530e8b71b1d079e23db45a0e621709061710ef8540aae8280aa039554ee" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:0c2d081e24204768e636cbf05e1377c8a6964b8ed6fa3aa5092ba9af9bbc19c5" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:89c2d04fe1cb7c31eb042f7b36e1ce8e2afacf769ecd5f216527e184e4857099" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.8.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:ab4653da31dc37f0a643f41f4da8bee647a8686bacf12d3929cac8aead186811" }, +] + +[[package]] +name = "torchaudio" +version = "2.9.1" +source = { registry = "https://download.pytorch.org/whl/cpu" } +resolution-markers = [ + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", +] +dependencies = [ + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] +wheels = [ + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e6a4c796b1b5dbd820be83388c209d0f163ef5d74a43a06d519360fdacd36ed1" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:9d3956e2bcf8a67e7e8468d760209aed0a5de3cfbdd46e4adfba80a3bc2d0d7b" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c779c0380fbba12d63f56c093dd93be1222d6cc3caf140ad1d89c4a60b28eff1" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f6fa882b750385fdb0a2aa5215a6a04b97cf9668b37617038a814c7630b2dc8d" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:1c521e9f70fab2e825f6b831ac314a79dc37f51c8d11cd5498c0f3c880a122e1" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:0b3fecc6bcfe46fcb905ea826ef63e9a052a6d9d1e2cd713f59a53a509fc8b5c" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:976c4106f9f1d86ecd74c1a6e1fbf903403f2a37547ba2ece262f82b0daae300" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:f5b0595fa19ee8c5ac6a997c0d14b662d9c92a08c43771698ae4c9e3f2273fdf" }, +] + +[[package]] +name = "torchaudio" +version = "2.9.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", +] +dependencies = [ + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/6b/34e489fcb4adc4b571a166f2670cc7f156cbe3337867a892fade0a1a5224/torchaudio-2.9.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6e3f5943135701168d30196e2befd46290180cdbb9ee508b167730d51f43208f", size = 807349, upload-time = "2025-11-12T15:25:57.843Z" }, + { url = "https://files.pythonhosted.org/packages/a6/52/66830da8b638368bc0aef064f3307c88d28b526ff8e60a1fda681466b1b3/torchaudio-2.9.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:d192cf3b1b677f6666dad60caf0ce7bab66965751570c694645dd905a6c61724", size = 474291, upload-time = "2025-11-12T15:25:45.21Z" }, + { url = "https://files.pythonhosted.org/packages/cb/6f/d8f1f36c9f63ddef78f00f8f8ddb9638128ceb5f6824c28bead5af48fc63/torchaudio-2.9.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8327e21f51dced2b6de3ac6a63f04bae9be9bc213e151f85c76164568c7ebc3d", size = 2058677, upload-time = "2025-11-12T15:25:53.09Z" }, + { url = "https://files.pythonhosted.org/packages/c3/ef/0ec42e783774bd1dda8bc2489e18b3e9c0a250384e0131cec9f35949f385/torchaudio-2.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:b41339a71b186bad238d94cfb68d4c202db0033088a7b824ce5484674bf67057", size = 664681, upload-time = "2025-11-12T15:25:59.08Z" }, + { url = "https://files.pythonhosted.org/packages/f1/83/71cbadd7b66753818b5775f2088bad4f721d581de276996df4968000a626/torchaudio-2.9.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7581ef170794c599aed55918e00d0acd9e5c9a0f19400c9a9a840955180365c5", size = 808098, upload-time = "2025-11-12T15:26:01.408Z" }, + { url = "https://files.pythonhosted.org/packages/ef/2d/32e8bec360459107f9b451cc1a5b6fdd5f1d3e653e65a111502084f21e3a/torchaudio-2.9.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:742f9d24db5f1f46d8c7e29c599fe55b866d92c4a8181fcb95eab12da225ceb0", size = 474604, upload-time = "2025-11-12T15:25:49.122Z" }, + { url = "https://files.pythonhosted.org/packages/fe/0d/b5af1d55ede1ca07769a2cf71256073d8958e2a5521fc734fc19f5343283/torchaudio-2.9.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:4533fdafba73d7bcfcb5f1225b2cc8974a290ed0fe54c44638d6f440e91b8999", size = 2059899, upload-time = "2025-11-12T15:26:19.363Z" }, + { url = "https://files.pythonhosted.org/packages/2e/7c/df90eb0b337cbad59296ed91778e32be069330f5186256d4ce9ea603d324/torchaudio-2.9.1-cp312-cp312-win_amd64.whl", hash = "sha256:923dccc67be4a6cbb45c3dcc2d69ee182bda75b09b69bc88cd3bcdfc739883a2", size = 665337, upload-time = "2025-11-12T15:26:07.407Z" }, + { url = "https://files.pythonhosted.org/packages/c0/1b/3321ad6379ac2d968064704e8d015c31ccae5d1ece070f87fb44b17d90e6/torchaudio-2.9.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:bb69557484c92513a980027ec4cb314b0f43cf4442bbfd97440e66528dbad22d", size = 808136, upload-time = "2025-11-12T15:26:00.276Z" }, + { url = "https://files.pythonhosted.org/packages/76/e2/fe55b3882157fd57aa131f5bcad90f0329be90827e1c0e0c482662ddef38/torchaudio-2.9.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:ba2799ceec5e4373a0aa26df30d608f1eaaefd8ac4a7ae0c3446f63106f5b5a5", size = 474349, upload-time = "2025-11-12T15:26:02.78Z" }, + { url = "https://files.pythonhosted.org/packages/74/d3/0b090c03cac5a20691507e0945589a696fb10402ccd2457eea47dbf8a71b/torchaudio-2.9.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:bc3c8e9a240bfad8bc61f769324a4f3ce5d60eec161369d457c595c35dbb10c7", size = 2060343, upload-time = "2025-11-12T15:26:03.88Z" }, + { url = "https://files.pythonhosted.org/packages/a0/db/2555cfd428f4bf09a4df1c6f9204d0acc217c46edb35776c16e7a2a9a1c9/torchaudio-2.9.1-cp313-cp313-win_amd64.whl", hash = "sha256:13ee96ea9bbbc85e198cb671273af06f010e6981d7b912d001eef6bc74e23f4f", size = 665301, upload-time = "2025-11-12T15:26:04.952Z" }, + { url = "https://files.pythonhosted.org/packages/0c/58/e82d8b5f447abdddc950965f1395f36baef3602643dd069100c6369ba73e/torchaudio-2.9.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:9290f6a6409deb1f9113d5aef97ec646eeee6410b6bcc57ab8b57066b54da7c1", size = 813456, upload-time = "2025-11-12T15:26:13.963Z" }, + { url = "https://files.pythonhosted.org/packages/ce/45/dd9ad6af9bb595095cd98028d270f933760968b92a3497282e31289ef3b4/torchaudio-2.9.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:eeae7ca60b64c4bfb78fbd104a089d072b151423d5d2f90da1da00787f03b800", size = 476577, upload-time = "2025-11-12T15:26:09.54Z" }, + { url = "https://files.pythonhosted.org/packages/79/97/c49aeb01d8a9ced2b8215a38b69b8eafd1afe295a487a73b7030c6ff3396/torchaudio-2.9.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:5f445e896215e6f7bba497dc68aab1e6cb077ae0ab3a90095067f16df6a9bb98", size = 2062158, upload-time = "2025-11-12T15:26:10.487Z" }, + { url = "https://files.pythonhosted.org/packages/ba/70/30b2a0ecca2a0a5e6a8cee8952fdea3872854ea5bcd86fe3df369fdc2543/torchaudio-2.9.1-cp313-cp313t-win_amd64.whl", hash = "sha256:c558ba70d548f7491245ed7a35310f6310d83fc7591f073ab5fed9fd38cef987", size = 669253, upload-time = "2025-11-12T15:26:06.285Z" }, +] + +[[package]] +name = "torchaudio" +version = "2.9.1+cpu" +source = { registry = "https://download.pytorch.org/whl/cpu" } +resolution-markers = [ + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", +] +dependencies = [ + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] +wheels = [ + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:6adc89a3c903d552e1654102134734179036bb8b756acab3db27d8bd8bd4d186" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1%2Bcpu-cp311-cp311-win_amd64.whl", hash = "sha256:54667bd392300887cf0948aa5a793ac51b4cef6395afdd9469e7ed9097dadac2" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:43cf20a2965cf081945c91d2dc8844377e5e3f1b172c0d0c18399ca3ecf1f899" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:53dd3155b794019e8de2dc49d044f410e6bce081d23a0e6548c156f37dfc9d0d" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c3cb189e9b30ff639535c1152056cc2523aecf139978f2b9b89109e2d376909e" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:f5426c7766f1e6aae0f2e59967292b9c3a3a21012e12ac7dcfd138a489eca4c7" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:386141130d1f054225e483cfaa942fe0219f1340d737de9018417452b42cf994" }, + { url = "https://download.pytorch.org/whl/cpu/torchaudio-2.9.1%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:0306bc184da793ffbfd6ae4ef32ab39215f64f4155c762f4c54970a991638bb5" }, +] + +[[package]] +name = "torchaudio" +version = "2.9.1+cu129" source = { registry = "https://download.pytorch.org/whl/cu129" } resolution-markers = [ "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux'", @@ -5114,17 +5549,13 @@ resolution-markers = [ "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux'", ] dependencies = [ - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:7bdc3e5dedeac5c64792f2038cd337267f3aae7db5932c94960ba3c9ad87d417" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:c24e7a2389276208d85077f6663735d406532214d5365bf2e5c15ae91a894415" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:a9541e141f29a1a9b21b8f323ad30f1d03ef08f72efea2139eafe7de7c0fd0f1" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:5072f6c901ddc234b8d5d472d42fbe97445c6bb3433337c3945d00b012642969" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:7da6d91ff23575a220202fa8b1db1531c2b126ad6cf7515f2e28afe95979ed55" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:25f99b060c867bedae2d5520acc3504afca0e75255724abdc4e05142a6c537cd" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:b64d03ab8ef46a158987a6943957c5cf537cc6fb8cb82e6eb80cd4eee1691b65" }, - { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.10.0%2Bcu129-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:411826a1d33e62404b69908242a017820e62f5a05facd277efc225a90a409570" }, + { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.9.1%2Bcu129-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:c1ff146bedc7df264bf4863eeb267ca997460e9e322c6e6ca1eeef1143e79911" }, + { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.9.1%2Bcu129-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:a663aea7f1d830e656d55bd10d43597a421511cafaaccc5c37ddf498431fc761" }, + { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.9.1%2Bcu129-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c783c92f84b1489157888f13c3fc316653e0a692cd197808a198ae1867335bca" }, + { url = "https://download.pytorch.org/whl/cu129/torchaudio-2.9.1%2Bcu129-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:997a65cc713f117e1762499feafa140da8c11a999d2341ccd719e3657b528bf4" }, ] [[package]] @@ -5132,12 +5563,14 @@ name = "torchmetrics" version = "1.8.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "lightning-utilities" }, - { name = "numpy" }, - { name = "packaging" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "lightning-utilities", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "numpy", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129')" }, + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/85/2e/48a887a59ecc4a10ce9e8b35b3e3c5cef29d902c4eac143378526e7485cb/torchmetrics-1.8.2.tar.gz", hash = "sha256:cf64a901036bf107f17a524009eea7781c9c5315d130713aeca5747a686fe7a5", size = 580679, upload-time = "2025-09-03T14:00:54.077Z" } wheels = [ @@ -5146,32 +5579,106 @@ wheels = [ [[package]] name = "torchvision" -version = "0.25.0" -source = { registry = "https://pypi.org/simple" } +version = "0.23.0" +source = { registry = "https://download.pytorch.org/whl/cpu" } +resolution-markers = [ + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux'", +] dependencies = [ - { name = "numpy" }, - { name = "pillow" }, - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu') or sys_platform == 'darwin' or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "numpy", marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pillow", marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] wheels = [ - { url = "https://files.pythonhosted.org/packages/3e/be/c704bceaf11c4f6b19d64337a34a877fcdfe3bd68160a8c9ae9bea4a35a3/torchvision-0.25.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:db74a551946b75d19f9996c419a799ffdf6a223ecf17c656f90da011f1d75b20", size = 1874923, upload-time = "2026-01-21T16:27:46.574Z" }, - { url = "https://files.pythonhosted.org/packages/ae/e9/f143cd71232430de1f547ceab840f68c55e127d72558b1061a71d0b193cd/torchvision-0.25.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:f49964f96644dbac2506dffe1a0a7ec0f2bf8cf7a588c3319fed26e6329ffdf3", size = 2344808, upload-time = "2026-01-21T16:27:43.191Z" }, - { url = "https://files.pythonhosted.org/packages/43/ae/ad5d6165797de234c9658752acb4fce65b78a6a18d82efdf8367c940d8da/torchvision-0.25.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:153c0d2cbc34b7cf2da19d73450f24ba36d2b75ec9211b9962b5022fb9e4ecee", size = 8070752, upload-time = "2026-01-21T16:27:33.748Z" }, - { url = "https://files.pythonhosted.org/packages/23/19/55b28aecdc7f38df57b8eb55eb0b14a62b470ed8efeb22cdc74224df1d6a/torchvision-0.25.0-cp311-cp311-win_amd64.whl", hash = "sha256:ea580ffd6094cc01914ad32f8c8118174f18974629af905cea08cb6d5d48c7b7", size = 4038722, upload-time = "2026-01-21T16:27:41.355Z" }, - { url = "https://files.pythonhosted.org/packages/56/3a/6ea0d73f49a9bef38a1b3a92e8dd455cea58470985d25635beab93841748/torchvision-0.25.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c2abe430c90b1d5e552680037d68da4eb80a5852ebb1c811b2b89d299b10573b", size = 1874920, upload-time = "2026-01-21T16:27:45.348Z" }, - { url = "https://files.pythonhosted.org/packages/51/f8/c0e1ef27c66e15406fece94930e7d6feee4cb6374bbc02d945a630d6426e/torchvision-0.25.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:b75deafa2dfea3e2c2a525559b04783515e3463f6e830cb71de0fb7ea36fe233", size = 2344556, upload-time = "2026-01-21T16:27:40.125Z" }, - { url = "https://files.pythonhosted.org/packages/68/2f/f24b039169db474e8688f649377de082a965fbf85daf4e46c44412f1d15a/torchvision-0.25.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:f25aa9e380865b11ea6e9d99d84df86b9cc959f1a007cd966fc6f1ab2ed0e248", size = 8072351, upload-time = "2026-01-21T16:27:21.074Z" }, - { url = "https://files.pythonhosted.org/packages/ad/16/8f650c2e288977cf0f8f85184b90ee56ed170a4919347fc74ee99286ed6f/torchvision-0.25.0-cp312-cp312-win_amd64.whl", hash = "sha256:f9c55ae8d673ab493325d1267cbd285bb94d56f99626c00ac4644de32a59ede3", size = 4303059, upload-time = "2026-01-21T16:27:11.08Z" }, - { url = "https://files.pythonhosted.org/packages/f5/5b/1562a04a6a5a4cf8cf40016a0cdeda91ede75d6962cff7f809a85ae966a5/torchvision-0.25.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:24e11199e4d84ba9c5ee7825ebdf1cd37ce8deec225117f10243cae984ced3ec", size = 1874918, upload-time = "2026-01-21T16:27:39.02Z" }, - { url = "https://files.pythonhosted.org/packages/36/b1/3d6c42f62c272ce34fcce609bb8939bdf873dab5f1b798fd4e880255f129/torchvision-0.25.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:5f271136d2d2c0b7a24c5671795c6e4fd8da4e0ea98aeb1041f62bc04c4370ef", size = 2309106, upload-time = "2026-01-21T16:27:30.624Z" }, - { url = "https://files.pythonhosted.org/packages/c7/60/59bb9c8b67cce356daeed4cb96a717caa4f69c9822f72e223a0eae7a9bd9/torchvision-0.25.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:855c0dc6d37f462482da7531c6788518baedca1e0847f3df42a911713acdfe52", size = 8071522, upload-time = "2026-01-21T16:27:29.392Z" }, - { url = "https://files.pythonhosted.org/packages/32/a5/9a9b1de0720f884ea50dbf9acb22cbe5312e51d7b8c4ac6ba9b51efd9bba/torchvision-0.25.0-cp313-cp313-win_amd64.whl", hash = "sha256:cef0196be31be421f6f462d1e9da1101be7332d91984caa6f8022e6c78a5877f", size = 4321911, upload-time = "2026-01-21T16:27:35.195Z" }, - { url = "https://files.pythonhosted.org/packages/52/99/dca81ed21ebaeff2b67cc9f815a20fdaa418b69f5f9ea4c6ed71721470db/torchvision-0.25.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a8f8061284395ce31bcd460f2169013382ccf411148ceb2ee38e718e9860f5a7", size = 1896209, upload-time = "2026-01-21T16:27:32.159Z" }, - { url = "https://files.pythonhosted.org/packages/28/cc/2103149761fdb4eaed58a53e8437b2d716d48f05174fab1d9fcf1e2a2244/torchvision-0.25.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:146d02c9876858420adf41f3189fe90e3d6a409cbfa65454c09f25fb33bf7266", size = 2310735, upload-time = "2026-01-21T16:27:22.327Z" }, - { url = "https://files.pythonhosted.org/packages/76/ad/f4c985ad52ddd3b22711c588501be1b330adaeaf6850317f66751711b78c/torchvision-0.25.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:c4d395cb2c4a2712f6eb93a34476cdf7aae74bb6ea2ea1917f858e96344b00aa", size = 8089557, upload-time = "2026-01-21T16:27:27.666Z" }, - { url = "https://files.pythonhosted.org/packages/63/cc/0ea68b5802e5e3c31f44b307e74947bad5a38cc655231d845534ed50ddb8/torchvision-0.25.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5e6b449e9fa7d642142c0e27c41e5a43b508d57ed8e79b7c0a0c28652da8678c", size = 4344260, upload-time = "2026-01-21T16:27:17.018Z" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:49aa20e21f0c2bd458c71d7b449776cbd5f16693dd5807195a820612b8a229b7" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:01dc33ee24c79148aee7cdbcf34ae8a3c9da1674a591e781577b716d233b1fa6" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e0e2c04a91403e8dd3af9756c6a024a1d9c0ed9c0d592a8314ded8f4fe30d440" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:6dd7c4d329a0e03157803031bc856220c6155ef08c26d4f5bbac938acecf0948" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1c37e325e09a184b730c3ef51424f383ec5745378dc0eca244520aca29722600" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:2f7fd6c15f3697e80627b77934f77705f3bc0e98278b989b2655de01f6903e1d" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:2df618e1143805a7673aaf82cb5720dd9112d4e771983156aaf2ffff692eebf9" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:2a3299d2b1d5a7aed2d3b6ffb69c672ca8830671967eb1cee1497bacd82fe47b" }, +] + +[[package]] +name = "torchvision" +version = "0.23.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and sys_platform == 'darwin'", + "python_full_version == '3.12.*' and sys_platform == 'darwin'", + "python_full_version < '3.12' and sys_platform == 'darwin'", +] +dependencies = [ + { name = "numpy", marker = "sys_platform == 'darwin' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pillow", marker = "sys_platform == 'darwin' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'darwin' or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/d7/15d3d7bd8d0239211b21673d1bac7bc345a4ad904a8e25bb3fd8a9cf1fbc/torchvision-0.23.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:49aa20e21f0c2bd458c71d7b449776cbd5f16693dd5807195a820612b8a229b7", size = 1856884, upload-time = "2025-08-06T14:58:00.237Z" }, + { url = "https://files.pythonhosted.org/packages/dd/14/7b44fe766b7d11e064c539d92a172fa9689a53b69029e24f2f1f51e7dc56/torchvision-0.23.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:01dc33ee24c79148aee7cdbcf34ae8a3c9da1674a591e781577b716d233b1fa6", size = 2395543, upload-time = "2025-08-06T14:58:04.373Z" }, + { url = "https://files.pythonhosted.org/packages/79/9c/fcb09aff941c8147d9e6aa6c8f67412a05622b0c750bcf796be4c85a58d4/torchvision-0.23.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:35c27941831b653f5101edfe62c03d196c13f32139310519e8228f35eae0e96a", size = 8628388, upload-time = "2025-08-06T14:58:07.802Z" }, + { url = "https://files.pythonhosted.org/packages/93/40/3415d890eb357b25a8e0a215d32365a88ecc75a283f75c4e919024b22d97/torchvision-0.23.0-cp311-cp311-win_amd64.whl", hash = "sha256:09bfde260e7963a15b80c9e442faa9f021c7e7f877ac0a36ca6561b367185013", size = 1600741, upload-time = "2025-08-06T14:57:59.158Z" }, + { url = "https://files.pythonhosted.org/packages/df/1d/0ea0b34bde92a86d42620f29baa6dcbb5c2fc85990316df5cb8f7abb8ea2/torchvision-0.23.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e0e2c04a91403e8dd3af9756c6a024a1d9c0ed9c0d592a8314ded8f4fe30d440", size = 1856885, upload-time = "2025-08-06T14:58:06.503Z" }, + { url = "https://files.pythonhosted.org/packages/e2/00/2f6454decc0cd67158c7890364e446aad4b91797087a57a78e72e1a8f8bc/torchvision-0.23.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:6dd7c4d329a0e03157803031bc856220c6155ef08c26d4f5bbac938acecf0948", size = 2396614, upload-time = "2025-08-06T14:58:03.116Z" }, + { url = "https://files.pythonhosted.org/packages/e4/b5/3e580dcbc16f39a324f3dd71b90edbf02a42548ad44d2b4893cc92b1194b/torchvision-0.23.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:4e7d31c43bc7cbecbb1a5652ac0106b436aa66e26437585fc2c4b2cf04d6014c", size = 8627108, upload-time = "2025-08-06T14:58:12.956Z" }, + { url = "https://files.pythonhosted.org/packages/82/c1/c2fe6d61e110a8d0de2f94276899a2324a8f1e6aee559eb6b4629ab27466/torchvision-0.23.0-cp312-cp312-win_amd64.whl", hash = "sha256:a2e45272abe7b8bf0d06c405e78521b5757be1bd0ed7e5cd78120f7fdd4cbf35", size = 1600723, upload-time = "2025-08-06T14:57:57.986Z" }, + { url = "https://files.pythonhosted.org/packages/91/37/45a5b9407a7900f71d61b2b2f62db4b7c632debca397f205fdcacb502780/torchvision-0.23.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1c37e325e09a184b730c3ef51424f383ec5745378dc0eca244520aca29722600", size = 1856886, upload-time = "2025-08-06T14:58:05.491Z" }, + { url = "https://files.pythonhosted.org/packages/ac/da/a06c60fc84fc849377cf035d3b3e9a1c896d52dbad493b963c0f1cdd74d0/torchvision-0.23.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:2f7fd6c15f3697e80627b77934f77705f3bc0e98278b989b2655de01f6903e1d", size = 2353112, upload-time = "2025-08-06T14:58:26.265Z" }, + { url = "https://files.pythonhosted.org/packages/a0/27/5ce65ba5c9d3b7d2ccdd79892ab86a2f87ac2ca6638f04bb0280321f1a9c/torchvision-0.23.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:a76fafe113b2977be3a21bf78f115438c1f88631d7a87203acb3dd6ae55889e6", size = 8627658, upload-time = "2025-08-06T14:58:15.999Z" }, + { url = "https://files.pythonhosted.org/packages/1f/e4/028a27b60aa578a2fa99d9d7334ff1871bb17008693ea055a2fdee96da0d/torchvision-0.23.0-cp313-cp313-win_amd64.whl", hash = "sha256:07d069cb29691ff566e3b7f11f20d91044f079e1dbdc9d72e0655899a9b06938", size = 1600749, upload-time = "2025-08-06T14:58:10.719Z" }, + { url = "https://files.pythonhosted.org/packages/05/35/72f91ad9ac7c19a849dedf083d347dc1123f0adeb401f53974f84f1d04c8/torchvision-0.23.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:2df618e1143805a7673aaf82cb5720dd9112d4e771983156aaf2ffff692eebf9", size = 2047192, upload-time = "2025-08-06T14:58:11.813Z" }, + { url = "https://files.pythonhosted.org/packages/1d/9d/406cea60a9eb9882145bcd62a184ee61e823e8e1d550cdc3c3ea866a9445/torchvision-0.23.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:2a3299d2b1d5a7aed2d3b6ffb69c672ca8830671967eb1cee1497bacd82fe47b", size = 2359295, upload-time = "2025-08-06T14:58:17.469Z" }, + { url = "https://files.pythonhosted.org/packages/2b/f4/34662f71a70fa1e59de99772142f22257ca750de05ccb400b8d2e3809c1d/torchvision-0.23.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:76bc4c0b63d5114aa81281390f8472a12a6a35ce9906e67ea6044e5af4cab60c", size = 8800474, upload-time = "2025-08-06T14:58:22.53Z" }, + { url = "https://files.pythonhosted.org/packages/6e/f5/b5a2d841a8d228b5dbda6d524704408e19e7ca6b7bb0f24490e081da1fa1/torchvision-0.23.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b9e2dabf0da9c8aa9ea241afb63a8f3e98489e706b22ac3f30416a1be377153b", size = 1527667, upload-time = "2025-08-06T14:58:14.446Z" }, +] + +[[package]] +name = "torchvision" +version = "0.23.0+cpu" +source = { registry = "https://download.pytorch.org/whl/cpu" } +resolution-markers = [ + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", +] +dependencies = [ + { name = "numpy", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "pillow", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +] +wheels = [ + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0%2Bcpu-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d83d8075db43b8ca89680bdeb2f100c832e2a3aa61ee42c038b1a146e5e511b6" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0%2Bcpu-cp311-cp311-win_amd64.whl", hash = "sha256:51603eb071d0681abc4db98b10ff394ace31f425852e8de249b91c09c60eb19a" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:ae459d4509d3b837b978dc6c66106601f916b6d2cda75c137e3f5f48324ce1da" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0%2Bcpu-cp312-cp312-win_amd64.whl", hash = "sha256:a651ccc540cf4c87eb988730c59c2220c52b57adc276f044e7efb9830fa65a1d" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0%2Bcpu-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:dea90a67d60a5366b0358a0b8d6bf267805278697d6fd950cf0e31139e56d1be" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0%2Bcpu-cp313-cp313-win_amd64.whl", hash = "sha256:82928788025170c62e7df1120dcdc0cd175bfc31c08374613ce6d1a040bc0cda" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0%2Bcpu-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:474d77adbbbed5166db3e5636b4b4ae3399c66ef5bfa12536e254b32259c90c0" }, + { url = "https://download.pytorch.org/whl/cpu/torchvision-0.23.0%2Bcpu-cp313-cp313t-win_amd64.whl", hash = "sha256:8d6a47e23d7896f0ef9aa7ea7179eb6324e82438aa66d19884c2020d0646b104" }, ] [[package]] @@ -5179,7 +5686,7 @@ name = "tqdm" version = "4.67.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/09/a9/6ba95a270c6f1fbcd8dac228323f2777d886cb206987444e4bce66338dd4/tqdm-4.67.3.tar.gz", hash = "sha256:7d825f03f89244ef73f1d4ce193cb1774a8179fd96f31d7e1dcde62092b960bb", size = 169598, upload-time = "2026-02-03T17:35:53.048Z" } wheels = [ @@ -5200,42 +5707,69 @@ name = "transformers" version = "4.53.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine != 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "filelock", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "numpy", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "regex", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "requests", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "safetensors", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "tqdm", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "filelock", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "numpy", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "packaging", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyyaml", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "regex", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "requests", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "safetensors", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tqdm", marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f1/5c/49182918b58eaa0b4c954fd0e37c79fc299e5643e69d70089d0b0eb0cd9b/transformers-4.53.3.tar.gz", hash = "sha256:b2eda1a261de79b78b97f7888fe2005fc0c3fabf5dad33d52cc02983f9f675d8", size = 9197478, upload-time = "2025-07-22T07:30:51.51Z" } wheels = [ @@ -5247,57 +5781,145 @@ name = "transformers" version = "5.2.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", - "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'darwin' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version < '3.12' and platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'darwin' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", ] dependencies = [ - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "numpy", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "packaging", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "pyyaml", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "regex", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "safetensors", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tokenizers", version = "0.22.2", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "tqdm", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "typer-slim", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "numpy", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "packaging", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "pyyaml", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "regex", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "safetensors", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tokenizers", version = "0.22.2", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "tqdm", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "typer-slim", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/bd/7e/8a0c57d562015e5b16c97c1f0b8e0e92ead2c7c20513225dc12c2043ba9f/transformers-5.2.0.tar.gz", hash = "sha256:0088b8b46ccc9eff1a1dca72b5d618a5ee3b1befc3e418c9512b35dea9f9a650", size = 8618176, upload-time = "2026-02-16T18:54:02.867Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/4e/93/79754b0ca486e556c2b95d4f5afc66aaf4b260694f3d6e1b51da2d036691/transformers-5.2.0-py3-none-any.whl", hash = "sha256:9ecaf243dc45bee11a7d93f8caf03746accc0cb069181bbf4ad8566c53e854b4", size = 10403304, upload-time = "2026-02-16T18:53:59.699Z" }, ] +[[package]] +name = "triton" +version = "3.5.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version >= '3.13' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/dc/dc/6ce44d055f2fc2403c4ec6b3cfd3a9b25f57b7d95efadccdea91497f8e81/triton-3.5.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:da47169e30a779bade679ce78df4810fca6d78a955843d2ddb11f226adc517dc", size = 159928005, upload-time = "2025-11-11T17:51:50.008Z" }, + { url = "https://files.pythonhosted.org/packages/b0/72/ec90c3519eaf168f22cb1757ad412f3a2add4782ad3a92861c9ad135d886/triton-3.5.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:61413522a48add32302353fdbaaf92daaaab06f6b5e3229940d21b5207f47579", size = 170425802, upload-time = "2025-11-11T17:40:53.209Z" }, + { url = "https://files.pythonhosted.org/packages/db/53/2bcc46879910991f09c063eea07627baef2bc62fe725302ba8f46a2c1ae5/triton-3.5.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:275a045b6ed670dd1bd005c3e6c2d61846c74c66f4512d6f33cc027b11de8fd4", size = 159940689, upload-time = "2025-11-11T17:51:55.938Z" }, + { url = "https://files.pythonhosted.org/packages/f2/50/9a8358d3ef58162c0a415d173cfb45b67de60176e1024f71fbc4d24c0b6d/triton-3.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d2c6b915a03888ab931a9fd3e55ba36785e1fe70cbea0b40c6ef93b20fc85232", size = 170470207, upload-time = "2025-11-11T17:41:00.253Z" }, + { url = "https://files.pythonhosted.org/packages/f1/ba/805684a992ee32d486b7948d36aed2f5e3c643fc63883bf8bdca1c3f3980/triton-3.5.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:56765ffe12c554cd560698398b8a268db1f616c120007bfd8829d27139abd24a", size = 159955460, upload-time = "2025-11-11T17:52:01.861Z" }, + { url = "https://files.pythonhosted.org/packages/27/46/8c3bbb5b0a19313f50edcaa363b599e5a1a5ac9683ead82b9b80fe497c8d/triton-3.5.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f3f4346b6ebbd4fad18773f5ba839114f4826037c9f2f34e0148894cd5dd3dba", size = 170470410, upload-time = "2025-11-11T17:41:06.319Z" }, + { url = "https://files.pythonhosted.org/packages/84/1e/7df59baef41931e21159371c481c31a517ff4c2517343b62503d0cd2be99/triton-3.5.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:02c770856f5e407d24d28ddc66e33cf026e6f4d360dcb8b2fabe6ea1fc758621", size = 160072799, upload-time = "2025-11-11T17:52:07.293Z" }, + { url = "https://files.pythonhosted.org/packages/37/92/e97fcc6b2c27cdb87ce5ee063d77f8f26f19f06916aa680464c8104ef0f6/triton-3.5.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0b4d2c70127fca6a23e247f9348b8adde979d2e7a20391bfbabaac6aebc7e6a8", size = 170579924, upload-time = "2025-11-11T17:41:12.455Z" }, +] + [[package]] name = "triton" version = "3.6.0" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')", + "python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf'", + "(python_full_version >= '3.13' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version >= '3.13' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version == '3.12.*' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", + "(python_full_version < '3.12' and platform_machine != 'x86_64' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf') or (python_full_version < '3.12' and sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra != 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129' and extra != 'extra-14-whisperlivekit-voxtral-hf')", +] wheels = [ { url = "https://files.pythonhosted.org/packages/0f/2c/96f92f3c60387e14cc45aed49487f3486f89ea27106c1b1376913c62abe4/triton-3.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:49df5ef37379c0c2b5c0012286f80174fcf0e073e5ade1ca9a86c36814553651", size = 176081190, upload-time = "2026-01-20T16:16:00.523Z" }, { url = "https://files.pythonhosted.org/packages/e0/12/b05ba554d2c623bffa59922b94b0775673de251f468a9609bc9e45de95e9/triton-3.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8e323d608e3a9bfcc2d9efcc90ceefb764a82b99dea12a86d643c72539ad5d3", size = 188214640, upload-time = "2026-01-20T16:00:35.869Z" }, @@ -5341,7 +5963,7 @@ name = "typer-slim" version = "0.24.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typer", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "typer", marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a7/a7/e6aecc4b4eb59598829a3b5076a93aff291b4fdaa2ded25efc4e1f4d219c/typer_slim-0.24.0.tar.gz", hash = "sha256:f0ed36127183f52ae6ced2ecb2521789995992c521a46083bfcdbb652d22ad34", size = 4776, upload-time = "2026-02-16T22:08:51.2Z" } wheels = [ @@ -5556,8 +6178,8 @@ source = { editable = "." } dependencies = [ { name = "fastapi" }, { name = "faster-whisper" }, - { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "huggingface-hub", version = "1.4.1", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "librosa" }, { name = "soundfile" }, { name = "tiktoken" }, @@ -5568,23 +6190,38 @@ dependencies = [ [package.optional-dependencies] cpu = [ - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.9.1", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.9.1+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] diarization-diart = [ { name = "diart" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.8.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchvision", version = "0.23.0+cpu", source = { registry = "https://download.pytorch.org/whl/cpu" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_machine != 'aarch64' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'aarch64' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (platform_python_implementation != 'CPython' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_python_implementation != 'CPython' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'darwin' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform == 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra != 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] diarization-sortformer = [ - { name = "nemo-toolkit", extra = ["asr"], marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, + { name = "nemo-toolkit", extra = ["asr"], marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, ] -gpu-cu129 = [ - { name = "torch", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torch", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "torchaudio", version = "2.10.0+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (sys_platform != 'linux' and extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, - { name = "triton", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux2') or (sys_platform != 'linux' and sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, +cu129 = [ + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torch", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "torchaudio", version = "2.9.1+cu129", source = { registry = "https://download.pytorch.org/whl/cu129" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "triton", version = "3.5.1", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "triton", version = "3.6.0", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux2' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (platform_machine != 'x86_64' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129') or (sys_platform != 'linux2' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, ] sentence-tokenizer = [ { name = "mosestokenizer" }, @@ -5598,12 +6235,14 @@ translation = [ { name = "nllw" }, ] voxtral-hf = [ - { name = "mistral-common", extra = ["audio"], marker = "(extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "accelerate" }, + { name = "mistral-common", extra = ["audio"], marker = "extra == 'extra-14-whisperlivekit-voxtral-hf' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" } }, ] [package.metadata] requires-dist = [ + { name = "accelerate", marker = "extra == 'voxtral-hf'", specifier = ">=0.12" }, { name = "diart", marker = "extra == 'diarization-diart'" }, { name = "fastapi" }, { name = "faster-whisper", specifier = ">=1.2.0" }, @@ -5618,21 +6257,27 @@ requires-dist = [ { name = "soundfile" }, { name = "tiktoken" }, { name = "torch", marker = "sys_platform == 'darwin' and extra == 'cpu'", specifier = ">=2.0.0" }, + { name = "torch", marker = "sys_platform == 'darwin' and extra == 'diarization-diart'", specifier = "<2.9.0" }, { name = "torch", marker = "sys_platform != 'darwin' and extra == 'cpu'", specifier = ">=2.0.0", index = "https://download.pytorch.org/whl/cpu", conflict = { package = "whisperlivekit", extra = "cpu" } }, - { name = "torch", marker = "platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'gpu-cu129'", specifier = ">=2.0.0", index = "https://download.pytorch.org/whl/cu129", conflict = { package = "whisperlivekit", extra = "gpu-cu129" } }, - { name = "torch", marker = "(platform_machine != 'x86_64' and extra == 'gpu-cu129') or (sys_platform != 'linux' and extra == 'gpu-cu129')", specifier = ">=2.0.0" }, + { name = "torch", marker = "sys_platform != 'darwin' and extra == 'diarization-diart'", specifier = "<2.9.0", index = "https://download.pytorch.org/whl/cpu", conflict = { package = "whisperlivekit", extra = "diarization-diart" } }, + { name = "torch", marker = "platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'cu129'", specifier = ">=2.0.0", index = "https://download.pytorch.org/whl/cu129", conflict = { package = "whisperlivekit", extra = "cu129" } }, + { name = "torch", marker = "(platform_machine != 'x86_64' and extra == 'cu129') or (sys_platform != 'linux' and extra == 'cu129')", specifier = ">=2.0.0" }, { name = "torchaudio", marker = "sys_platform == 'darwin' and extra == 'cpu'", specifier = ">=2.0.0" }, + { name = "torchaudio", marker = "sys_platform == 'darwin' and extra == 'diarization-diart'", specifier = "<2.9.0" }, { name = "torchaudio", marker = "sys_platform != 'darwin' and extra == 'cpu'", specifier = ">=2.0.0", index = "https://download.pytorch.org/whl/cpu", conflict = { package = "whisperlivekit", extra = "cpu" } }, - { name = "torchaudio", marker = "platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'gpu-cu129'", specifier = ">=2.0.0", index = "https://download.pytorch.org/whl/cu129", conflict = { package = "whisperlivekit", extra = "gpu-cu129" } }, - { name = "torchaudio", marker = "(platform_machine != 'x86_64' and extra == 'gpu-cu129') or (sys_platform != 'linux' and extra == 'gpu-cu129')", specifier = ">=2.0.0" }, + { name = "torchaudio", marker = "sys_platform != 'darwin' and extra == 'diarization-diart'", specifier = "<2.9.0", index = "https://download.pytorch.org/whl/cpu", conflict = { package = "whisperlivekit", extra = "diarization-diart" } }, + { name = "torchaudio", marker = "platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'cu129'", specifier = ">=2.0.0", index = "https://download.pytorch.org/whl/cu129", conflict = { package = "whisperlivekit", extra = "cu129" } }, + { name = "torchaudio", marker = "(platform_machine != 'x86_64' and extra == 'cu129') or (sys_platform != 'linux' and extra == 'cu129')", specifier = ">=2.0.0" }, + { name = "torchvision", marker = "sys_platform == 'darwin' and extra == 'diarization-diart'", specifier = "<0.24.0" }, + { name = "torchvision", marker = "sys_platform != 'darwin' and extra == 'diarization-diart'", specifier = "<0.24.0", index = "https://download.pytorch.org/whl/cpu", conflict = { package = "whisperlivekit", extra = "diarization-diart" } }, { name = "tqdm" }, { name = "transformers", marker = "python_full_version >= '3.10' and extra == 'voxtral-hf'", specifier = ">=5.2.0" }, - { name = "triton", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'gpu-cu129') or (platform_machine == 'x86_64' and sys_platform == 'linux2' and extra == 'gpu-cu129')", specifier = ">=2.0.0" }, + { name = "triton", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'cu129') or (platform_machine == 'x86_64' and sys_platform == 'linux2' and extra == 'cu129')", specifier = ">=2.0.0" }, { name = "uvicorn" }, { name = "websockets" }, { name = "wtpsplit", marker = "extra == 'sentence-tokenizer'" }, ] -provides-extras = ["test", "translation", "sentence-tokenizer", "voxtral-hf", "cpu", "gpu-cu129", "diarization-sortformer", "diarization-diart"] +provides-extras = ["test", "translation", "sentence-tokenizer", "voxtral-hf", "cpu", "cu129", "diarization-sortformer", "diarization-diart"] [[package]] name = "wrapt" @@ -5691,8 +6336,8 @@ dependencies = [ { name = "scikit-learn" }, { name = "skops" }, { name = "tqdm" }, - { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129')" }, - { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-gpu-cu129') or (extra != 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra != 'extra-14-whisperlivekit-gpu-cu129' and extra == 'extra-14-whisperlivekit-voxtral-hf')" }, + { name = "transformers", version = "4.53.3", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "transformers", version = "5.2.0", source = { registry = "https://pypi.org/simple" }, marker = "extra != 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129') or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-voxtral-hf') or (extra == 'extra-14-whisperlivekit-diarization-diart' and extra == 'extra-14-whisperlivekit-diarization-sortformer' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f6/f5/ffb260bc57931361f35dcf51221b23130cbd6eabb7a73bcfb6f6208526c2/wtpsplit-1.3.0.tar.gz", hash = "sha256:fee280321eed70d74f5f8f7680880cf641a05bb6f7b7fa30ff189dc12f3b2346", size = 29471, upload-time = "2024-01-22T15:28:18.974Z" } wheels = [ @@ -5777,9 +6422,9 @@ name = "yarl" version = "1.22.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "idna" }, - { name = "multidict" }, - { name = "propcache" }, + { name = "idna", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "multidict", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, + { name = "propcache", marker = "extra == 'extra-14-whisperlivekit-diarization-diart' or extra == 'extra-14-whisperlivekit-diarization-sortformer' or (extra == 'extra-14-whisperlivekit-cpu' and extra == 'extra-14-whisperlivekit-cu129')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/57/63/0c6ebca57330cd313f6102b16dd57ffaf3ec4c83403dcb45dbd15c6f3ea1/yarl-1.22.0.tar.gz", hash = "sha256:bebf8557577d4401ba8bd9ff33906f1376c877aa78d1fe216ad01b4d6745af71", size = 187169, upload-time = "2025-10-06T14:12:55.963Z" } wheels = [